| /plugin/settingstree/ |
| D | helper.php | 177 function checkSettingsVersion($pluginname,$version){ argument 178 …cache() && $cache_ver = $this->cache()->get("plugin_settringstree_settingsversion_{$pluginname}")){ 181 return @filemtime(DOKU_SETTINGS_DIR."/{$pluginname}.meta.json") < $version; 185 function registerSettings($pluginname,$version,$meta,$defaults){ argument 186 if (!file_put_contents($file = DOKU_SETTINGS_DIR."/{$pluginname}.meta.json",json_encode($meta)) 188 …!file_put_contents($file = DOKU_SETTINGS_DIR."/{$pluginname}.defaults.json",json_encode($defaults)) 190 trigger_error("Can not store settings for {$pluginname} to {$file}!",E_USER_ERROR); 194 $c->set("plugin_settringstree_settingsversion_{$pluginname}",$version,$TTL); 195 $c->set("plugin_settringstree_settingsmeta_{$pluginname}",$meta,$TTL); 196 $c->set("plugin_settringstree_settingsdefaults_{$pluginname}",$defaults,$TTL); [all …]
|
| D | script.js | 25 …var $ = jQuery, $root = $(this), opts = $.extend({},opts), pluginname = opts.pluginname, token = o… 52 …{ call:'plugin_settingstree', operation: 'savelevel', pluginname: pluginname, path: path, sectok: … property 81 …{ call:'plugin_settingstree', operation: 'exportlevel', pluginname: pluginname, path: path, sectok… property 128 …{ call:'plugin_settingstree', operation: 'loadlevel', pluginname: pluginname, path: id, sectok: to… property 149 …{ call:'plugin_settingstree', operation: 'show_hierarchy', pluginname: pluginname, key: key, secto… property
|
| /plugin/settingstree/settings/ |
| D | settingshierarchy.class.php | 23 function __construct($pluginname,$meta,$defaults,$values){ argument 24 $this->_pluginname = $pluginname; 84 $pluginname = ($config_plugin ? 'config' : $this->_pluginname); 89 $path = DOKU_INC."lib/plugins/{$pluginname}/lang/{$l}/{$type}.php"; 91 …&& @filemtime($path) <= static::$cache->get("plugin_{$pluginname}_lang_{$l}_{$type}_time") // and… 92 …&& $ll = static::$cache->get("plugin_{$pluginname}_lang_{$l}_{$type}") // and cache contains … 102 static::$cache->set("plugin_{$pluginname}_lang_{$l}_{$type}",$lang,0); 103 static::$cache->set("plugin_{$pluginname}_lang_{$l}_{$type}_time",filemtime($path),0); 149 static function _getlocal($key,$pluginname){ argument 150 if (static::_isextended($key,$pluginname)){ [all …]
|
| /plugin/firenews/ |
| D | syntax.php | 52 $pluginname = "firenews"; 53 $tablename = $pluginname; 56 $sqlite = $this->sqlConnection($pluginname); 292 * @param string $pluginname name of the current plugin 296 private function sqlConnection(string $pluginname) argument 305 $dbname = $pluginname; 306 $updatedir = DOKU_PLUGIN . "$pluginname/db/";
|
| /plugin/yuriigantt/src/Driver/Embedded/ |
| D | Handler.php | 95 * @param string $pluginname name of the plugin 100 public function plugin($match, $state, $pos, $pluginname) argument 104 $plugin = plugin_load('syntax', $pluginname); 109 $this->addPluginCall($pluginname, $data, $state, $pos, $match);
|
| /plugin/jsonrpc/ |
| D | IJR_Server.php | 90 private function callPlugin($pluginname, $callback, $method, $args) argument 93 list($pluginname, $callback) = explode(':', substr($method, 7), 2); 94 if(!plugin_isdisabled($pluginname)) 96 $plugin = plugin_load('action', $pluginname); 133 return $this->callPlugin($pluginname, $callback, $method, $args);
|
| /plugin/cronojob/pseudo-cron/ |
| D | pseudo-cron.inc.php | 158 var $pluginname; variable in cronojob 165 $this->pluginname = "cronojob"; 168 $path = DOKU_PLUGIN.$this->pluginname.'/conf/'; 182 …if (isset($conf['plugin'][$this->pluginname][$key])) $conf_plug[$key] = $conf['plugin'][$this->plu… 376 …include(DOKU_PLUGIN.$this->pluginname."/jobs/".$job[PC_CMD]); // display errors only when debuggi… 378 …@include(DOKU_PLUGIN.$this->pluginname."/jobs/".$job[PC_CMD]); // any error messages are supressed 384 …mail($this->sendLogToEmail, "[".$this->dokuwikititle."][".$this->pluginname."] ".$job[PC_COMMENT],…
|
| D | pseudo-cron-image.php | 201 var $pluginname; variable in cronojob 208 $this->pluginname = "cronojob"; 211 $path = DOKU_PLUGIN.$this->pluginname.'/conf/'; 225 …if (isset($conf['plugin'][$this->pluginname][$key])) $conf_plug[$key] = $conf['plugin'][$this->plu… 419 …include(DOKU_PLUGIN.$this->pluginname."/jobs/".$job[PC_CMD]); // display errors only when debuggi… 421 …@include(DOKU_PLUGIN.$this->pluginname."/jobs/".$job[PC_CMD]); // any error messages are supressed 427 …mail($this->sendLogToEmail, "[".$this->dokuwikititle."][".$this->pluginname."] ".$job[PC_COMMENT],…
|
| /plugin/cronojob/ |
| D | pseudocron.php | 92 var $pluginname; variable in cronojob 104 $this->pluginname = "cronojob"; 107 $path = DOKU_PLUGIN.$this->pluginname.'/conf/'; 121 …if (isset($conf['plugin'][$this->pluginname][$key])) $conf_plug[$key] = $conf['plugin'][$this->plu… 166 …include(DOKU_PLUGIN.$this->pluginname."/jobs/".$job[PC_CMD]); // display errors only when debuggi… 168 …@include(DOKU_PLUGIN.$this->pluginname."/jobs/".$job[PC_CMD]); // any error messages are supressed 174 …@mail($this->sendLogToEmail, "[".$this->dokuwikititle."][".$this->pluginname."] ".$job[PC_COMMENT]…
|
| /plugin/move/helper/ |
| D | handler.php | 366 * @param string $pluginname The name of the plugin 369 public function plugin($match, $state, $pos, $pluginname) { argument 370 if(isset($this->handlers[$pluginname])) { 371 …$this->wikitext .= call_user_func($this->handlers[$pluginname], $match, $state, $pos, $pluginname,…
|
| /plugin/uilanguage/ |
| D | action.php | 81 $pluginname = $this->getPluginName(); 86 …$link['href'] = DOKU_BASE.'lib/plugins/'.$pluginname.'/rtlcss.php?s='.$link['media'].'&t='.$conf['…
|
| /plugin/confsearch/ |
| D | syntax.php | 46 list($pluginname,$parameters,$button)=explode('>',$params,3); 62 list($pluginname,$parameters,$button)=explode('>',$params,3);
|
| /plugin/siteexport/action/ |
| D | move.php | 30 public function move_handler($match, $state, $pos, $pluginname, $handler) { argument
|
| /plugin/components/ |
| D | README.md | 67 `pluginname.example`. These files can be put in subdirectories of arbitrary depth to 76 … the action name that these handlers respond to. Note the full action name is pluginname.actionname
|
| /plugin/webdav/vendor/sabre/dav/ |
| D | CHANGELOG.md | 1730 * Added: Plugins can now specify a pluginname, for easy access using
|