Lines Matching refs:extension

4  * DokuWiki Plugin extension (Helper Component)
20 * Class helper_plugin_extension_extension represents a single extension (plugin or template)
68 * Set the name of the extension this instance shall represents, triggers loading the local and remote data
70 * @param string $id The id of the extension (prefixed with template: for templates)
106 * If the extension is installed locally
108 * @return bool If the extension is installed locally
116 * If the extension is under git control
127 * If the extension is bundled
129 * @return bool If the extension is bundled
143 'extension',
158 * If the extension is protected against any modification (disable/uninstall)
160 * @return bool if the extension is protected
175 * If the extension is installed in the correct directory
177 * @return bool If the extension is installed in the correct directory
185 * If the extension is enabled
187 * @return bool If the extension is enabled
202 * If the extension should be updated, i.e. if an updated version is available
218 * If the extension is a template
220 * @return bool If this extension is a template
228 * Get the ID of the extension
251 * Get the basename of the extension
262 * Get the display name of the extension
274 * Get the author name of the extension
286 * Get the email of the author of the extension if there is any
310 * Get the description of the extension
322 * Get the URL of the extension, usually a page on dokuwiki.org
334 * Get the installed version of the extension
368 * Get the names of the dependencies of this extension
420 * Get the names of the tags of the extension
422 * @return array The names of the tags of the extension
475 * Get the URL of the screenshot of the extension if there is any
486 * Get the URL of the thumbnail of the extension if there is any
496 * Get the last used download URL of the extension if there is any
498 * @return string|bool The previously used download URL, false if the extension has been installed manually
507 * Get the download URL of the extension if there is any
530 * Get the bug tracker URL of the extension if there is any
552 * Get the donation URL of the extension if there is any
563 * Get the extension type(s)
575 * Get a list of all DokuWiki versions this extension is compatible with
597 * Get the base path of the extension
599 * @return string The base path of the extension
611 * The type of extension installation
624 * If the extension can probably be installed/updated or uninstalled
645 * Install an extension from a user upload
648 * @param boolean $overwrite overwrite folder if the extension name is the same
677 * Install an extension from a remote URL
680 * @param boolean $overwrite overwrite folder if the extension name is the same
695 * Install or update the extension
707 // refresh extension information
709 throw new Exception('Error, the requested extension hasn\'t been installed or updated');
718 * Uninstall the extension
729 * Enable the extension
750 * Disable the extension
783 * Read local extension data either from info.txt or getInfo()
826 * @param string $url Where the extension was downloaded from. (empty for manual installs via upload)
1187 * Determines the compression type from the file extension
1235 * @return string|false false if the file can't be read, otherwise an "extension"
1291 foreach ($installed as $extension) {
1293 if ($extension['action'] == 'install') continue;
1296 if ($extension['type'] == 'template') {
1301 $extensiondir = $extensiondir . $extension['base'] . '/';