Home
last modified time | relevance | path

Searched refs:class (Results 1 – 25 of 2173) sorted by last modified time

12345678910>>...87

/plugin/pagelist/
H A Dhelper.php11 class helper_plugin_pagelist extends DokuWiki_Plugin
100 * These can be overriden by plugins using this class
193 * - th($col, &$class=null) or th()
194 * - td($id, $col=null, &$class=null) or td($id)
340 $class = 'inline';
343 $class = 'ul';
346 $class = false;
349 $class = 'pagelist';
352 if ($class) {
353 $class
712 printCell($class, $content) global() argument
[all...]
/plugin/vertical/
H A Dsyntax.php99 $renderer->doc .= '<div class="'.$class.'">';
/plugin/siteexport/inc/
H A DreadCSS.patch253 else if ($level == 1) { // e.g. p or .class or #id or p.class or p#id
/plugin/siteexport/renderer/
H A Dpdf.php145 $class = array();
152 $class[] = 'level' . trim($headingNumber);
154 $class[] = 'notfirst';
156 $class[] = 'first';
160 if ( !empty($class) ) {
250 $class = preg_replace('/[^_\-a-z0-9]+/i','_',$ext);
251 $link['class'] .= ' mediafile mf_'.$class;
292 $class = 'wikilink1';
294 $class = 'wikilink2';
298 $class = 'media';
[all …]
/plugin/structpublish/meta/
H A DAssignments.php15 class Assignments
35 $class = get_called_class();
36 self::$instance = new $class();
/plugin/struct/meta/
H A DAssignments.php16 class Assignments
36 $class = static::class;
37 self::$instance = new $class();
H A DSchema.php19 class Schema
112 if ($row['class'] == 'Integer') {
113 $row['class'] = 'Decimal';
116 $class = $typeclasses[$row['class']];
117 if (!class_exists($class)) {
119 msg('Unknown type "' . hsc($row['class']) . '" falling back to Text', -1);
120 $class = 'dokuwiki\\plugin\\struct\\types\\Text';
125 $type = new $class($config, $row['label'], $row['ismulti'], $row['tid']);
145 return self::class
[all...]
H A DSchemaEditor.php13 * schema happens in the SchemaBuilder class.
17 class SchemaEditor
38 * This data is processed by the SchemaBuilder class
51 $form->addHTML('<table class="inline">');
75 '<textarea name="schema[config]" id="schemaConfig" cols="45" rows="10" class="config">' .
119 $class = $col->isEnabled() ? '' : 'disabled';
121 $html = "<tr class=\"$class\">";
123 $html .= '<td class="sort">';
127 $html .= '<td class
[all...]
/plugin/struct/types/
H A DAbstractBaseType.php17 * This class represents a basic type that can be configured to be used in a Schema. It is the main
25 abstract class AbstractBaseType
125 'class' => $this->getClass()
130 * The class name of this type (no namespace)
135 $class = get_class($this);
136 return substr($class, strrpos($class, "\\") + 1);
267 $html .= '<div class="multiwrap">';
272 $html .= '<div class="newtemplate">';
273 $html .= '<div class
[all...]
H A DCheckbox.php5 class Checkbox extends AbstractBaseType
45 'class' => 'struct_' . strtolower($this->getClass()),
65 $class = 'struct_' . strtolower($this->getClass());
78 'class' => $class,
/plugin/struct/action/
H A Dconfig.php16 class action_plugin_struct_config extends ActionPlugin
46 $class = $typeclasses[$INPUT->str('type', 'Text')];
48 $type = new $class($conf);
H A Dedit.php23 class action_plugin_struct_edit extends ActionPlugin
99 return "<div class=\"struct_entry_form\">$html</div>";
163 $class = $hint ? 'hashint' : '';
176 $html = '<div class="field">';
178 $html .= "<span class=\"label $class\" title=\"$hint\">$trans</span>";
180 $html .= "<span class=\"input\">$input</span>";
/plugin/struct/db/
H A Dupdate0001.sql1 -- Defines the schema of one class of data
12 class NOT NULL, field
H A Dupdate0007.sql1 UPDATE types SET class = 'Media' WHERE class = 'Image';
/plugin/struct/helper/
H A Dfield.php15 * This class is used when a field of the type struct_field is encountered in the
18 class helper_plugin_struct_field extends helper_plugin_bureaucracy_field
96 $params['class'] = 'bureaucracy_error';
200 $class = $hint ? 'hashint' : '';
208 $html = '<div class="field">';
209 $html .= "<label class=\"$lclass\" data-column=\"$colname\" for=\"$id\">";
210 $html .= "<span class=\"label $class\" title=\"$hint\">$trans$required</span>";
212 $html .= "<span class=\"input\">$input</span>";
/plugin/mermaid/
H A Dsyntax.php11 class syntax_plugin_mermaid extends \dokuwiki\Extension\SyntaxPlugin
88 $renderer->doc .= '<div class="mermaid" style="width:'.$divwidth.'; height:'.$divheight.'">';
137 $class = 'dokuwiki\\Parsing\\ParserMode\\'.ucfirst($m);
138 $obj = new $class();
/plugin/doi/Resolver/
H A DAbstractResolver.php5 abstract class AbstractResolver
26 * Defaults to class name (without Resolver) in lowercase
73 * Caches get refreshed when the resolver class has been updated
81 $class = get_class($this);
82 $class = substr($class, strrpos($class, '\\') + 1);
83 $file = DOKU_PLUGIN . 'doi/Resolver/' . $class . '.php';
87 $ext = strtolower(str_replace('Resolver', '', $class));
/plugin/doi/syntax/
H A Disbn.php9 class syntax_plugin_doi_isbn extends syntax_plugin_doi_doi
28 $class = '\\dokuwiki\\plugin\\doi\\Resolver\\Isbn'.$this->getConf('isbnresolver').'Resolver';
29 return new $class();
/plugin/openlayersmap/ol7/
H A Dol.js.map
/plugin/geophp/
H A Ddeleted.files2 geoPHP/lib/adapters/EWKB.class.php
3 geoPHP/lib/adapters/EWKT.class.php
4 geoPHP/lib/adapters/GPX.class.php
5 geoPHP/lib/adapters/GeoAdapter.class.php
6 geoPHP/lib/adapters/GeoHash.class.php
7 geoPHP/lib/adapters/GeoJSON.class.php
8 geoPHP/lib/adapters/GeoRSS.class.php
9 geoPHP/lib/adapters/GoogleGeocode.class.php
10 geoPHP/lib/adapters/KML.class.php
11 geoPHP/lib/adapters/WKB.class
[all...]
/plugin/geophp/vendor/funiq/geophp/src/
H A DgeoPHP.php18 class geoPHP
238 $class = self::CLASS_NAMESPACE .
242 return new $class($reducedGeometries);
270 * @return Geometry A Geometry of the "smallest", "most type-specific" class that can contain the elements.
323 $class = self::CLASS_NAMESPACE . 'Geometry\\' . $newType;
324 return new $class($geometries);
/plugin/geophp/vendor/composer/
H A DClassLoader.php16 * ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
30 * In this example, if you try to use a class in the Symfony\Component
32 * the autoloader will first look for the class under the component/
36 * This class is loosely based on the Symfony UniversalClassLoader.
43 class ClassLoader
313 * Turns on searching the include path for class files.
337 * that have not been registered with the class map.
349 * Should class lookup fail if not found in the current class map?
418 * Loads the given class o
425 loadClass($class) global() argument
443 findFile($class) global() argument
493 findFileWithExtension($class, $ext) global() argument
[all...]
H A Dautoload_real.php5 class ComposerAutoloaderInit8c920a9ce68d92f821701ab2e03316d3
9 public static function loadClassLoader($class) argument
11 if ('Composer\Autoload\ClassLoader' === $class) {
/plugin/photogallery/phpThumb/
H A DREADME.md11 thanks to the GIFutil class by Fabien Ezber. AntiHotlinking feature prevents other people from usin…
/plugin/photogallery/phpThumb/docs/
H A Dphpthumb.changelog.txt48 * [bugfix: G94] cannot declare class phpthumb_functions
217 ¤ new class function resetObject() should be used to reset
218 default class paramters to default to allow reusing a
744 phpthumb.class.php, and 'output_allow_enlarging' has
1172 * Bugfix: missing phpthumb_functions:: class name for
1211 phpthumb.class.php (change of case only, will not
1337 * Rewritten as a PHP class. Split into several files:
1338 - phpthumb.class.php = most processing code
1552 Util" class by Fabien Ezber (www.yamasoft.com)

12345678910>>...87