Home
last modified time | relevance | path

Searched refs:class (Results 51 – 75 of 100) sorted by last modified time

1234

/dokuwiki/inc/Ui/
H A DRecent.php15 class Recent extends Ui
57 echo '<div class="level1"><p>'
63 $form = new Form(['id' => 'dw__recent', 'method' => 'GET', 'action' => wl($ID), 'class' => 'changes']);
82 $class = ($RevInfo->val('type') === DOKU_CHANGE_TYPE_MINOR_EDIT) ? 'minor' : '';
83 $form->addTagOpen('li')->addClass($class);
101 $form->addTagClose('div'); // close div class=no
186 $html = '<div class="pagenav">';
189 $html .= '<div class="pagenav-prev">';
191 . ' title="' . $lang['btn_newer'] . ' [N]" class="button show">'
197 $html .= '<div class
[all...]
H A DSearch.php10 class Search extends Ui
507 $html = '<div class="search_quickresult">';
509 $html .= '<ul class="search_quickhits">';
525 $html .= '<div class="clearer"></div>';
544 return '<div class="nothing">' . $lang['nothingfound'] . '</div>';
547 $html = '<div class="search_fulltextresult">';
550 $html .= '<dl class="search_results">';
568 $lastMod = '<span class="lastmod">' . $lang['lastmod'] . '</span> ';
575 $hits = '<span class="hits">' . $cnt . ' ' . $lang['hits'] . '</span>, ';
589 $html .= '<div class
[all...]
H A DAdmin.php18 class Admin extends Ui
33 echo '<div class="ui-admin">';
55 $class = 'admin_plugins';
57 $class = 'admin_tasks';
60 echo "<ul class=\"$class\">";
106 echo '<li><div class="li">';
108 echo '<span class="icon">';
111 echo '<span class="prompt">';
/dokuwiki/inc/
H A DActionRouter.php17 class ActionRouter
70 * Instantiates the right class, runs permission checks and pre-processing and
170 * This translates the given name to a class name by uppercasing the first letter.
172 * parts are removed beginning from the end until a matching class is found. The instatiated
187 $class = 'dokuwiki\\Action\\' . str_replace('_', '', ucwords($load, '_'));
188 if (class_exists($class)) {
189 return new $class($actionname);
/dokuwiki/lib/plugins/styling/
H A Dadmin.php12 class admin_plugin_styling extends AdminPlugin
50 $class = 'nopopup';
51 if ($this->ispopup) $class = 'ispopup page';
53 echo '<div id="plugin__styling" class="' . $class . '">';
78 echo '<p class="error">' . $this->getLang('error') . '</p>';
82 echo '<form class="styling" method="post" action="' . $target . '">';
101 echo '<button type="submit" name="run[preview]" class="btn_preview primary">' .
108 echo '<button type="submit" name="run[save]" class="primary">' . $this->getLang('btn_save') . '</button>';
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php33 abstract class ASN1
100 * @link http://php.net/class.datetime
291 /* Class is UNIVERSAL, APPLICATION, PRIVATE, or CONTEXT-SPECIFIC. The UNIVERSAL class is restricted to the ASN.1
293 data types. The other three classes are user defined. The APPLICATION class distinguishes data types that
296 alternatives of a CHOICE, or universally tagged set members. Only the class number appears in braces for this
300 $class = ($type >> 6) & 3;
301 switch ($class) {
307 'type' => $class,
336 'type' => $class,
603 // Get the mapping and input class
[all...]
H A DX509.php47 class X509
588 [static::class, 'decodeNameConstraintIP'] :
589 [static::class, 'decodeIP'];
697 $value = ASN1::encodeDER($value, $map, ['iPAddress' => [static::class, 'encodeIP']]);
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md16 - New class `SimplePie\Cache\CallableNameFilter` to provide a `callable` to customize the cache key in [#762](https://github.com/simplepie/simplepie/pull/762)
19 - Registry: Allow using class-strings instead of magic strings by @jtojnar and @Art4 in [#766](https://github.com/simplepie/simplepie/pull/766)
46 - The class `SimplePie\Cache` is deprecated, use implementation of `SimplePie\SimplePie::set_cache()` instead
47 - The class `SimplePie\Cache\DB` is deprecated, use implementation of `Psr\SimpleCache\CacheInterface` instead
48 - The class `SimplePie\Cache\File` is deprecated, use implementation of `Psr\SimpleCache\CacheInterface` instead
49 - The class `SimplePie\Cache\Memcache` is deprecated, use implementation of `Psr\SimpleCache\CacheInterface` instead
50 - The class `SimplePie\Cache\Memcached` is deprecated, use implementation of `Psr\SimpleCache\CacheInterface` instead
51 - The class `SimplePie\Cache\MySQL` is deprecated, use implementation of `Psr\SimpleCache\CacheInterface` instead
52 - The class `SimplePie\Cache\Redis` is deprecated, use implementation of `Psr\SimpleCache\CacheInterface` instead
65 - New class `SimplePi
[all...]
H A DREADME.markdown4 SimplePie is a very fast and easy-to-use class, written in PHP, that puts the
H A Dautoloader.php49 * would cause the function to attempt to load the \SimplePie\SimplePie class
54 * @param string $class The fully-qualified class name.
57 spl_autoload_register(function ($class) {
65 // does the class use the namespace prefix?
67 if (strncmp($prefix, $class, $len) !== 0) {
72 // get the relative class name
73 $relative_class = substr($class, $len);
76 // separators with directory separators in the relative class name, append
95 * Autoloader class
117 autoload($class) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DReadMe.txt3 * IDNA Convert (idna_convert.class.php) *
14 The class idna_convert allows to convert internationalized domain names
19 The class provides two public methods, encode() and decode(), which do exactly
37 ATTENTION: We no longer supply the PHP5 version of the class. It is not
46 idna_convert.class.php - The actual class
53 The class is contained in idna_convert.class.php.
54 MAKE SURE to copy the npdata.ser file into the same folder as the class file
63 // Include the class
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DCache.php53 * This class can be overloaded with {@see SimplePie::set_cache_class()},
61 class Cache
97 $class = self::$handlers[$type];
98 return new $class($location, $filename, $extension);
120 * @param class-string<Base> $class Name of handler class. Must implement Base
122 public static function register($type, $class) argument
124 self::$handlers[$type] = $class;
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php5 * The GeSHi class for Generic Syntax Highlighting. Please refer to the
7 * information about how to use this class.
145 for this regexp's html tag class */
219 * about how to use this class.
226 class GeSHi {
422 * The overall class for this code block
851 * class can then be used in a stylesheet to style this object's
854 * @param string $class The class name to use for this block of code
857 public function set_overall_class($class) { argument
[all...]
/dokuwiki/bin/
H A Dplugin.php15 class PluginCLI extends CLI
100 $class = "cli_plugin_$name";
101 if (class_exists($class)) {
102 return new $class();
/dokuwiki/lib/images/fileicons/svg/
H A D7z.svg1 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><style>.st1{fill:#d8a13f}</style><path fill="#fff" d="M0 0h100v100H0z"/><path class="st1" d="M100 100H0V0h100v100zM9.7 90h80.7V10H9.7"/><path class="st1" d="M72.4 38.5h-7.9v-7.9l7.9 7.9zm-21.3-7.9v28.8h21.4v-19h-9.9v-9.9H51.1zm3.3-7.6H30.8v5.6h9. (…)
H A Dbz2.svg1 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><style>.st1{fill:#d8a13f}</style><path fill="#fff" d="M0 0h100v100H0z"/><path class="st1" d="M100 100H0V0h100v100zM9.7 90h80.7V10H9.7"/><path class="st1" d="M72.4 38.5h-7.9v-7.9l7.9 7.9zm-21.3-7.9v28.8h21.4v-19h-9.9v-9.9H51.1zm3.3-7.6H30.8v5.6h9. (…)
H A Dcsv.svg1 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><style>.st1{fill:#1f7244}</style><path fill="#fff" d="M0 0h100v100H0z"/><path class="st1" d="M100 100H0V0h100v100zM9.7 90h80.7V10H9.7"/><path class="st1" d="M62.1 30.9h14.1v9.4H62.1zm0 14.5h14.1v9.4H62.1zm0 14.3h14.1v9.4H62.1zm-19.2 0H57v9.4H42.9 (…)
H A Dgif.svg1 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><style>.st1{fill:#5b2d8d}</style><path fill="#fff" d="M0 0h100v100H0z"/><path class="st1" d="M100 100H0V0h100v100zM9.7 90h80.7V10H9.7"/><circle class="st1" cx="32.4" cy="35" r="8"/><path class="st1" d="M78.9 47.3l-9.7-9.6L50 57l-9.6-9.7-19.3 19.3V73h57.8z"/></svg
H A Dhtm.svg1 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><style>.st0{fill:#fff}</style><path class="st0" d="M0 0h100v100H0z"/><path d="M100 100H0V0h100v100zM9.7 90h80.7V10H9.7" fill="#666"/><path fill="#e44f26" d="M74.3 23.5H25.7l4.5 49.4L50 78.5l19.7-5.6z"/><path fill="#f1662a" d="M50 27.5v46.8l16-4.5 3.9-42.3z"/><path class="st0" d="M65.3 33.6H34.7l1.7 18.5.1-.2h20.8l-.6 7.9-6.7 1.9-6.8-1.9-.4-4.8h-6.1l.9 9.5L50 68l12.4- (…)
H A Djpeg.svg1 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><style>.st1{fill:#5b2d8d}</style><path fill="#fff" d="M0 0h100v100H0z"/><path class="st1" d="M100 100H0V0h100v100zM9.7 90h80.7V10H9.7"/><circle class="st1" cx="32.4" cy="35" r="8"/><path class="st1" d="M78.9 47.3l-9.7-9.6L50 57l-9.6-9.7-19.3 19.3V73h57.8z"/></svg
H A Djpg.svg1 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><style>.st1{fill:#5b2d8d}</style><path fill="#fff" d="M0 0h100v100H0z"/><path class="st1" d="M100 100H0V0h100v100zM9.7 90h80.7V10H9.7"/><circle class="st1" cx="32.4" cy="35" r="8"/><path class="st1" d="M78.9 47.3l-9.7-9.6L50 57l-9.6-9.7-19.3 19.3V73h57.8z"/></svg
H A Djson.svg1 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><style>.st1{fill:#999}</style><path fill="#fff" d="M0 0h100v100H0z"/><path class="st1" d="M100 100H0V0h100v100zM9.7 90h80.7V10H9.7"/><path d="M22 53.4v-5.9c1.3-.1 2.3-.2 2.9-.6.6-.2 1.1-.8 1.6-1.4.5-.7.8-1.5 1-2.6.1-.8.3-2.1.3-4 0-3.2.1-5.4.5-6.7.3-1.2.9-2.3 1.6-3 .8-.7 2-1.3 3.5-1.8 1-.2 2.6-.5 4.9-.5h1.4v5.8c-1.9 0-3.2.1-3.7.4-.5.2-.9.5-1.3 1-.3.4-.4 1.1-.4 2.1s-.1 3-.3 5.8c-.1 1.7-.3 3-.6 3.9-.4 1-.9 1.8-1.4 2.5-.5.6-1.4 1.3-2.5 2 1 .6 1.9 1.2 2.5 1.9.6.7 1.1 1.7 1.5 2.7.4 1.1.6 2.5.6 4.3.1 2.7.1 4.4.1 5.2 0 1.1.1 1.8.4 2.3.3.5.8.7 1.3 1 .5.2 1.8.4 3.7.4V74h-1.4c-2.3 0-4.2-.1-5.3-.5-1.3-.4-2.3-1-3.2-1.8-.9-.8-1.4-1.8-1.8-3-.3-1.2-.4-3.1-.4-5.7 0-3-.1-5-.4-5.8-.4-1.3-1-2.3-1.8-2.9-.5-.5-1.7-.9-3.3-.9zm55.9 0c-1.3.1-2.3.2-2.9.6-.6.2-1.1.8-1.6 1.4-.5.7-.8 1.5-1 2.6-.1.8-.3 2.1-.3 4 0 3.2-.1 5.4-.5 6.7-.3 1.3-.9 2.3-1.6 3-.8.7-2 1.3-3.5 1.8-1 .2-2.6.5-4.9.5h-1.4v-5.8c1.9 0 3-.1 3.7-.4.6-.2 1-.6 1.3-1s.4-1.1.4-2.1.1-2.9.3-5.7c.1-1.7.4-3.1.8-4 .4-1.1.9-1.9 1.5-2.6.6-.7 1.4-1.3 2.4-1.9-1.6-1-2.6-1.7-3.1-2.4-.8-1.1-1.4-2.5-1.6-4-.3-1.2-.4-3.7-.4-7.5 0-1.2-.1-2-.4-2.5-.3-.4-.6-.7-1.1-1-.5-.2-1.8-.4-3.8-.4v-5.8h1.4c2.3 0 4.2.1 5.3.5 1.3.4 2.3 1 3.2 1.8.9.8 1.4 1.8 1.8 3 .3 1.2.5 3.1.5 5.7 0 3 .1 4.9.4 5.8.4 1.3 1 2.3 1.8 2.7.8.6 2 .8 3.5 1v5.9l-.2.1z" stroke="#999" stroke-width=".5" stroke-miterlimit="10" fill="#999"/><path class="st1" d="M61.1 52.8c-1-.3-1.6-1.2-1.6-2.2 0-1 .7-1.9 1.6-2.2.3-.1.5-.4.4-.7-.3-1.1-.7-2.1-1.3-3-.1 (…)
H A Dmp3.svg1 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><style>.st2{fill:#039}</style><path fill="#fff" d="M0 0h100v100H0z"/><path d="M100 100H0V0h100v100zM9.7 90h80.7V10H9.7" fill="#0e3693"/><path class="st2" d="M32.5 37.5h-9v25h9L53.6 77V23L32.5 37.5M71.9 50c0 6.8-3.7 12.7-9.1 15.8l2.8 4.9c7.1-4.1 11.9-11.8 11.9-20.7 0-8.8-4.8-16.6-11.9-20.7l-2.8 4.9c5.4 3.1 9.1 9 9.1 15.8z"/><path class="st2" d="M62.1 50c0 3.2-1.7 5.9-4.3 7.4l2.7 4.7c4.2-2.4 7-6.9 7-12.1 0-5.2-2.8-9.7-7-12.1l-2.7 4.7 (…)
/dokuwiki/vendor/composer/
H A Dautoload_real.php5 class ComposerAutoloaderInita19a915ee98347a0c787119619d2ff9b
9 public static function loadClassLoader($class) argument
11 if ('Composer\Autoload\ClassLoader' === $class) {
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG521 - The overall_class is now up to the user, and the language-code is _always_ added as a class (milian)
799 - Allow regexes to set a CSS class name (SmokingRope)
915 - The $_GESHI_ERRORS array is gone, error messages are internal to the GeSHi class

1234