| /plugin/yuriigantt/src/Views/ |
| D | dhtmlxgantt.php | 31 $withTranslation = function () use ($pluginName, $lang, $baseUrl) { 42 … $langUrl = $baseUrl . "lib/plugins/{$pluginName}/3rd/dhtmlxgantt/locale/locale_$lang.js?v=6.3.5"; 51 <link rel="stylesheet" href="<?= $baseUrl ?>lib/plugins/<?= $pluginName; ?>/3rd/dhtmlxgantt/dhtmlxg… 68 <script src="<?= $baseUrl ?>lib/plugins/<?= $pluginName; ?>/3rd/dhtmlxgantt/dhtmlxgantt.js?v=6.3.5"… 69 <script src="<?= $baseUrl ?>lib/plugins/<?= $pluginName; ?>/3rd/dhtmlxgantt/ext/dhtmlxgantt_fullscr… 71 <div id="<?= $pluginName; ?>"></div> 83 …toggleIcon.src = '<?= $baseUrl ?>lib/plugins/<?= $pluginName; ?>/3rd/fontawesome/expand-solid.svg'; 98 …toggleIcon.src = '<?= $baseUrl ?>lib/plugins/<?= $pluginName; ?>/3rd/fontawesome/compress-solid.sv… 106 …toggleIcon.src = '<?= $baseUrl ?>lib/plugins/<?= $pluginName; ?>/3rd/fontawesome/expand-solid.svg'; 111 gantt.init('<?=$pluginName;?>') [all …]
|
| /plugin/dx/src/ |
| D | Standardize.php | 16 public function standardizePlugin(string $pluginName): void argument 21 $this->ensurePluginDirPristine($pluginName); 29 $this->deleteFileFromPlugin($pluginName, $fileName); 42 $this->copyFileToPlugin($pluginName, $fileName); 47 private function ensurePluginDirPristine(string $pluginName): void argument 49 $pluginDir = DOKU_PLUGIN . $pluginName; 51 …throw new RuntimeException("Plugin \"$pluginName\" does not exist in expected location \"$pluginDi… 64 private function deleteFileFromPlugin(string $pluginName, string $fileName): void argument 66 $targetFilePath = DOKU_PLUGIN . $pluginName . '/' . $fileName; 76 private function copyFileToPlugin(string $pluginName, string $fileName): void argument [all …]
|
| /plugin/rrdgraph/ |
| D | helper.php | 25 private $pluginName; variable in cache_rrdgraphbase 29 …* @param String $pluginName The name of the plugin. This can be retrieved by getPluginName() and m… 34 public function __construct($pluginName, $pageId, $key, $ext) { argument 36 $this->pluginName = $pluginName; 54 … $dependencies = p_get_metadata($this->pageId, 'plugin_' . $this->pluginName . ' dependencies'); 79 …* @param String $pluginName The name of the plugin. This can be retrieved by getPluginName() and m… 83 public function __construct($pluginName, $pageId, $recipeName) { argument 84 $this->pluginName = $pluginName; 86 parent::__construct($pluginName, $pageId, $recipeName, ".rrd"); 101 …* @param String $pluginName The name of the plugin. This can be retrieved by getPluginName() and m… [all …]
|
| /plugin/fksnewsfeed/ |
| D | helper.php | 69 $pluginName = $this->getPluginName(); 71 msg($pluginName . ': This plugin requires the sqlite plugin. Please install it.'); 74 …if (!$this->sqlite->init('newsfeed', DOKU_PLUGIN . $pluginName . DIRECTORY_SEPARATOR . 'db' . DIRE… 76 msg($pluginName . ': Cannot initialize database.');
|
| /plugin/dx/ |
| D | cli.php | 28 foreach ( $arguments as $pluginName ) { 29 (new Standardize())->standardizePlugin($pluginName);
|
| /plugin/adhoctags/syntax/ |
| D | abstract.php | 19 protected $pluginName = 'adhoctags'; variable in syntax_plugin_adhoctags_abstract 61 …ce('%t%', $this->tag, $this->special_pattern),$mode,'plugin_' . $this->pluginName.'_'.$this->getPl… 64 …lace('%t%', $this->tag, $this->entry_pattern),$mode,'plugin_' . $this->pluginName.'_'.$this->getPl… 72 …tr_replace('%t%', $this->tag, $this->exit_pattern), 'plugin_' . $this->pluginName.'_'.$this->getPl…
|
| /plugin/ckgedit/ckeditor/plugins/image/ |
| D | plugin.js.unc | 17 var pluginName = 'image'; 20 CKEDITOR.dialog.add( pluginName, this.path + 'dialogs/image.js' ); 23 editor.addCommand( pluginName, new CKEDITOR.dialogCommand( pluginName ) ); 28 command: pluginName,
|
| /plugin/ckgdoku/ckeditor/plugins/image/ |
| D | plugin.js.unc | 17 var pluginName = 'image'; 20 CKEDITOR.dialog.add( pluginName, this.path + 'dialogs/image.js' ); 23 editor.addCommand( pluginName, new CKEDITOR.dialogCommand( pluginName ) ); 28 command: pluginName,
|
| /plugin/sentry/ |
| D | Event.php | 307 foreach ($pluginlist as $pluginName) { 308 $infopath = DOKU_PLUGIN . $pluginName . '/plugin.info.txt'; 311 $this->data['modules']['plugin.' . $pluginName] = $pluginInfo['date']; 313 $this->data['modules']['plugin.' . $pluginName] = 'plugin.info.txt unreadable';
|
| /plugin/authsplit/ |
| D | auth.php | 44 $pluginName = $this->getConf($settingName); 45 if (!$pluginName) { 50 if ($pluginName != 'None') { 51 $this->authplugins[$type] = plugin_load('auth', $pluginName); 53 msg(sprintf($this->getLang('pluginload'), $pluginName), -1);
|
| /plugin/codemirror/dist/modes/ |
| D | tiki.min.js.map | 1 …pluginName","type","peek","test","inAttributeNoQuote","inAttribute","quote","curState","setStyle",…
|
| D | stex.min.js.map | 1 …pluginName","cmdStyle","styles","this","bracketNo","style","argument","openBracket","plugins","set…
|
| /plugin/adhoctables/ |
| D | divwrap.php | 16 protected $pluginName = 'adhocwrap'; variable in syntax_plugin_adhocwrap_divwrap
|
| D | spaninline.php | 16 protected $pluginName = 'adhocwrap'; variable in syntax_plugin_adhocwrap_spaninline
|
| D | spanwrap.php | 16 protected $pluginName = 'adhocwrap'; variable in syntax_plugin_adhocwrap_spanwrap
|
| D | divblock.php | 16 protected $pluginName = 'adhocwrap'; variable in syntax_plugin_adhocwrap_divblock
|
| /plugin/adhocwrap/syntax/ |
| H A D | divwrap.php | 16 protected $pluginName = 'adhocwrap'; variable in syntax_plugin_adhocwrap_divwrap
|
| H A D | spaninline.php | 16 protected $pluginName = 'adhocwrap'; variable in syntax_plugin_adhocwrap_spaninline
|
| H A D | spanwrap.php | 16 protected $pluginName = 'adhocwrap'; variable in syntax_plugin_adhocwrap_spanwrap
|
| H A D | divblock.php | 16 protected $pluginName = 'adhocwrap'; variable in syntax_plugin_adhocwrap_divblock
|
| /plugin/adhocmathml/ |
| D | abstract.php | 14 protected $pluginName = 'adhocmathml'; variable in syntax_plugin_adhocmathml_abstract
|
| /plugin/combo/ComboStrap/ |
| H A D | PluginUtility.php | 964 $pluginName = PluginUtility::getComponentName($tagName); 966 $pluginName, 983 $pluginName = PluginUtility::getComponentName($tagName); 985 $pluginName,
|
| /plugin/webcode/syntax/ |
| D | basis.php | 627 $pluginName = $this->getPluginName(); 629 return 'plugin_' . $pluginName . '_' . $pluginComponent;
|
| /plugin/404manager/ |
| D | admin.php | 709 $pluginName = $this->infoPlugin['base']; 716 $init = $this->sqlite->init($pluginName, DOKU_PLUGIN . $pluginName . '/db/');
|
| /plugin/diagramsnet/lib/js/diagramly/ |
| D | ElectronApp.js | 689 var pluginName = sysPath.basename(paths[0]); 690 var dstFile = sysPath.join(pluginsDir, pluginName); 706 callback(pluginName);
|