/plugin/scrape/HTMLPurifier/Printer/ |
H A D | HTMLDefinition.php | 9 protected $def; variable in HTMLPurifier_Printer_HTMLDefinition 15 $this->def = $config->getHTMLDefinition(); 33 $doctype = $this->def->doctype; 50 $def = $this->def; 114 ksort($this->def->info); 119 foreach ($this->def->info as $name => $def) { 127 if (!empty($def->excludes)) { 145 if (!empty($def->auto_close)) { 176 if (isset($def->elements)) { 180 $elements = $def->elements; [all …]
|
H A D | CSSDefinition.php | 6 protected $def; variable in HTMLPurifier_Printer_CSSDefinition 9 $this->def = $config->getCSSDefinition(); 24 ksort($this->def->info); 25 foreach ($this->def->info as $property => $obj) {
|
H A D | ConfigForm.php | 162 $def = $this->config->def->info["$ns.$directive"]; 163 if (is_int($def)) { 164 $allow_null = $def < 0; 165 $type = abs($def); 167 $type = $def->type; 251 $def = $config->def->info["$ns.$directive"]; 252 if (is_int($def)) { 253 $type = abs($def); 255 $type = $def->type; 288 if (isset($def->allowed)) { [all …]
|
/plugin/captcha/ |
H A D | EasySVG.php | 182 * @param string $def 198 * @param string $def 209 $def = $this->defTranslate($def, $x, $y); 226 $def = array(); 251 $def[] = $d; 266 $def = array(); 369 $def = $this->defTranslate($def, $x, $y); 370 $def = $this->defRotate($def, $angle); 371 $def = $this->defTranslate($def, -$x, -$y); 372 return $def; [all …]
|
/plugin/watchcycle/ |
H A D | helper.php | 87 * @param string $def 90 public function validateMaintainerString($def) argument 96 $all = explode(',', $def); 122 * @param string $def maintainer definition as given in the syntax 125 public function getMaintainers($def) argument 133 $all = explode(',', $def); 150 public function getMaintainerMails($def) argument 156 $data = $this->getMaintainers($def); 174 * @param string $def 177 public function isMaintainer($user, $def) argument [all …]
|
H A D | syntax.php | 181 * @param string $def 184 protected function getMaintainerHtml($def) argument 189 $all = $helper->getMaintainers($def);
|
/plugin/simplemysqlclient/syntax/ |
H A D | simplemysqlclient.php | 225 $def = $meta [$column]; 227 $headers [$column] = $def ['label'] ? $def ['label'] : $column; 228 $class = $def ['format'] ? $def ['format'] : 'na'; 268 unset ( $def ); 271 $def = $meta [$column]; 284 $def = $meta [$temp]; 290 $headers [$column] = $def ['label'] ? $def ['label'] : $column; 329 switch ($def ['format']) { 367 if ($def ['options'] ['unixts']) 379 if ($def ['options'] ['unixts']) [all …]
|
/plugin/crossdbsqlclient/syntax/ |
H A D | dbwrapper.php | 201 $def = $meta [$column]; 203 $headers [$column] = $def ['label'] ? $def ['label'] : $column; 204 $class = $def ['format'] ? $def ['format'] : 'na'; 244 unset ( $def ); 247 $def = $meta [$column]; 260 $def = $meta [$temp]; 266 $headers [$column] = $def ['label'] ? $def ['label'] : $column; 305 switch ($def ['format']) { 343 if ($def ['options'] ['unixts']) 355 if ($def ['options'] ['unixts']) [all …]
|
/plugin/database2/ |
H A D | database2.php | 846 if ( $def['isColumn'] && ( $def['format'] == 'acl' ) ) 1865 $headers[$column] = $def['label'] ? $def['label'] : $column; 1866 $class = $def['format'] ? $def['format'] : 'na'; 1946 unset( $def ); 1973 $headers[$column] = $def['label'] ? $def['label'] : $column; 2527 $href = $this->attachmentLink( $def[2], $authz, !$def[3] ); 3004 …if ( $def['isColumn'] && ( $allVisible || $def['options']['visible'] || $def['options']['filter'] … 3014 $label = $def['label'] ? $def['label'] : $column; 3920 $def['options']['visible'] = ( $def['format'] == 'acl' ) ? 1 : true; 5806 $label = $def['label'] ? $def['label'] : $column; [all …]
|
/plugin/projects/lib/ |
H A D | plugins.php | 19 $def = new TargetDefinition(array('name' => $file->name(), 21 if (is_array($deps)) foreach ($deps as $dep) $def->add_dependency($dep); 22 $def->add_recipe($recipe); 23 return ProjectFile::create($project, $def);
|
/plugin/scrape/ |
H A D | HTMLPurifier.standalone.php | 1392 public $def; variable in HTMLPurifier_Config 1591 $def = $this->def->info[$key]; 1608 $rtype = is_int($def) ? $def : $def->type; 1629 if (isset($def->allowed) && !isset($def->allowed[$value])) { 1736 if ($def->optimized) $cache->add($def, $this); 1840 return $def; 2302 $def->child = $this->getChildDef($def, $module); 2978 if(!is_null($def->child)) $this->child = $def->child; 4437 if ($def) { 8886 $this->def = $def; [all …]
|
/plugin/swiftmail/Swift/Plugin/ |
H A D | FileEmbedder.php | 241 if ($def = $this->getTagDefinition($tag_name)) 243 $pattern = sprintf($pattern_format, $tag_name, implode("|", $def["attributes"]), 244 implode("|", $this->getProtocols()), implode("|", $def["extensions"])); 258 if ($def = $this->getTagDefinition($tag_name)) 260 $pattern = sprintf($pattern_format, $tag_name, implode("|", $def["attributes"]), 261 implode("|", $def["extensions"])); 413 foreach ($this->definitions as $tag_name => $def)
|
/plugin/scrape/HTMLPurifier/ |
H A D | Printer.php | 152 foreach ($obj->defs as $def) { 153 $values[] = $this->getClass($def, $sec_prefix); 162 $class .= $this->getClass($obj->def, $sec_prefix) . ', '; 166 $class .= $this->getClass($obj->def, $sec_prefix);
|
/plugin/querychangelog/ |
H A D | admin.php | 79 if ($_REQUEST['qcsd'] == '<def>') { 87 if ($_REQUEST['qced'] == '<def>') { 208 …td><input type="radio" name="qcsd" value="<def>" '.($_REQUEST['qcsd'] == '<def>' ? 'CHECKED' : '')… 210 …td><input type="radio" name="qcsd" value="<beg>" '.($_REQUEST['qcsd'] != '<def>' ? 'CHECKED' : '')… 216 …td><input type="radio" name="qced" value="<def>" '.($_REQUEST['qced'] == '<def>' ? 'CHECKED' : '')… 218 …td><input type="radio" name="qced" value="<beg>" '.($_REQUEST['qced'] != '<def>' ? 'CHECKED' : '')…
|
/plugin/glossary/ |
H A D | ajax.php | 42 case $glossary->def.'remove': 43 case $glossary->def.'update':
|
H A D | glossary.class.php | 377 $all = $this->readAllGlossary ($this->def); 544 $all = $this->readAllGlossary ($this->def); 586 $all = $this->readAllGlossary ($this->def); 665 $this->manageRecord ($request, $this->def, false); 677 if ($status == $this->def) { 711 if ($status == $this->def) 836 $this->getGlosarySize ($this->def, $file), 848 list ($ns, $def, $prop, $poll) = $data; 854 ' <td>'.$def.'</td>'.NL. 885 if ($request['operation'] == $this->def."remove") [all …]
|
/plugin/freechat/phpfreechat/data/public/js/ |
H A D | pfcprompt.js | 94 prompt: function(text,def) argument 97 if (def==undefined) { def=''; } 124 this.prompt_field.value = def;
|
/plugin/pot/source/ |
H A D | format.php | 17 $def = $this->cargo['settings'][$formatedsettings['defaultsettings']]; variable 18 $defsettings = $pothelper->_formatsettings($def);
|
/plugin/ifauthex/_test/ |
H A D | testpage.txt | 9 2def
|
/plugin/scrape/HTMLPurifier/Filter/ |
H A D | ExtractStyleBlocks.php | 106 $def = $css_definition->info[$name]; 107 $ret = $def->validate($value, $config, $context);
|
/plugin/scrape/HTMLPurifier/ConfigSchema/schema/ |
H A D | HTML.DefinitionID.txt | 17 $def = $config->getHTMLDefinition(); 18 $def->addAttribute('a', 'tabindex', 'Number');
|
/plugin/codemirror/dist/modes/ |
H A D | properties.min.js.map | 1 …def\";\n }\n }\n\n if (eol && ! state.nextMultiline) {\n state.inMultiline…
|
/plugin/codeprettify/code-prettify/src/ |
H A D | lang-rd.js | 44 [PR['PR_KEYWORD'], /^#(?:ifn?def|endif)/ ],
|
/plugin/syntaxhighlighter3/sxh3/src/js/ |
H A D | shLegacy.js | 28 function defaultValue(value, def) argument 30 return value != null ? value : def;
|
/plugin/syntaxhighlighter3/sxh3/pkg/scripts/ |
H A D | shLegacy.js | 44 function defaultValue(value, def) argument 46 return value != null ? value : def;
|