| /dokuwiki/lib/plugins/extension/ |
| H A D | remote.php | 20 * List installed extensions 22 * This lists all installed extensions. The list is not sorted in any way. 24 * @return ExtensionApiResponse[] The list of installed extensions and their details 29 throw new AccessDeniedException('Only admins are allowed to access extensions', 114); 32 $extensions = (new Local())->getExtensions(); 33 Repository::getInstance()->initExtensions(array_keys($extensions)); 38 $extensions 44 * Search for extensions in the repository 48 * @return ExtensionApiResponse[] List of matching extensions 53 throw new AccessDeniedException('Only admins are allowed to access extensions', 114); [all …]
|
| H A D | cli.php | 47 $options->registerCommand('list', 'List installed extensions'); 52 … $options->registerCommand('upgrade', 'Update all installed extensions to their latest versions'); 53 …$options->registerOption('git-overwrite', 'Do not skip git-controlled extensions', 'g', false, 'up… 56 $options->registerCommand('install', 'Install or upgrade extensions'); 58 'extensions...', 59 'One or more extensions to install. Either by name or download URL', 66 …$options->registerArgument('extensions...', 'One or more extensions to install', true, 'uninstall'… 69 $options->registerCommand('enable', 'Enable installed extensions'); 70 … $options->registerArgument('extensions...', 'One or more extensions to enable', true, 'enable'); 73 $options->registerCommand('disable', 'Disable installed extensions'); [all …]
|
| H A D | Local.php | 15 $extensions = []; 20 $extensions[$ext->getId()] = $ext; 22 return $extensions; 54 * Get all locally installed extensions
|
| H A D | Repository.php | 79 * Fetch the data for multiple extensions from the repository 102 $extensions = json_decode($response, true, 512, JSON_THROW_ON_ERROR); 103 foreach ($extensions as $extension) { 107 … // extensions that have not been returned are not in the repository, but we should cache that too 120 * The extensions are initialized by fetching their data from the cache or the repository. 121 … * This is the recommended way to initialize a whole bunch of extensions at once as it will only do 122 * a single API request for all extensions that are not in the cache. 124 * Extensions that are not found in the cache or the repository will be initialized as null. 194 * Search for extensions using the given query string 197 * @return Extension[] a list of matching extensions [all …]
|
| H A D | Installer.php | 17 * Install and deinstall extensions 73 * @param bool $skipInstalled Ignore the overwrite setting and skip installed extensions 101 * Install extensions from a given URL 118 * Install extensions from a user upload 139 * Install extensions from an archive 141 …* The archive is extracted to a temporary directory and then the contained extensions are installe… 152 $extensions = $this->findExtensions($target, $base); 153 foreach ($extensions as $extension) { 365 * Get the list of processed extensions and their status during an installation run 458 * Find all extensions in a given directory [all …]
|
| H A D | admin.php | 42 foreach ($INPUT->post->arr('fn') as $action => $extensions) { 43 foreach ($extensions as $extension => $label) {
|
| /dokuwiki/lib/plugins/extension/_test/ |
| H A D | LocalTest.php | 49 $extensions = $local->getExtensions(); 51 $this->assertIsArray($extensions); 52 foreach ($extensions as $extension) { 56 $this->assertArrayHasKey('template:dokuwiki', $extensions); 57 $this->assertArrayHasKey('extension', $extensions);
|
| H A D | InstallerTest.php | 48 * Test finding extensions in given directories 58 $this->assertEquals(count($expected), count($list), 'number of extensions found');
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ASN1/Maps/ |
| H A D | Extensions.php | 4 * Extensions 19 * Extensions 23 abstract class Extensions class
|
| H A D | TBSCertificate.php | 58 'extensions' => [ 62 ] + Extensions::MAP
|
| H A D | RevokedCertificate.php | 32 ] + Extensions::MAP
|
| /dokuwiki/bin/ |
| H A D | gittool.php | 44 …'plugin repository to find the proper git repository. Multiple extensions can be given as paramete… 111 * Tries to install the given extensions using git clone 113 * @param array $extensions 115 public function cmdClone($extensions) argument 120 foreach ($extensions as $ext) { 134 …if ($succeeded) $this->success('successfully cloned the following extensions: ' . implode(', ', $s… 135 … if ($errors) $this->error('failed to clone the following extensions: ' . implode(', ', $errors)); 139 * Tries to install the given extensions using git clone with fallback to install 141 * @param array $extensions 143 public function cmdInstall($extensions) argument [all …]
|
| /dokuwiki/lib/plugins/extension/lang/fr/ |
| H A D | lang.php | 13 $lang['menu'] = 'Gestionnaire d\'extensions'; 44 $lang['author_hint'] = 'Chercher les extensions de cet auteur'; 79 …'] = 'Cette extension est indiquée comme conflictuelle avec les extensions installées suiva… 108 $lang['noperms'] = 'Impossible d\'écrire dans le dossier des extensions.'; 115 $lang['repo_badresponse'] = 'Le référentiel d\'extensions a retourné une réponse invalide.'; 116 $lang['repo_error'] = 'Le référentiel d\'extensions est injoignable. Veuillez vous assur… 117 …e PHP semble ne pas prendre en charge SSL. Le téléchargement de nombreuses extensions va échouer.'; 118 $lang['popularity_high'] = 'C\'est l\'une des extensions les plus populaires';
|
| H A D | intro_install.txt | 1 Ici, vous pouvez installer des extensions, greffons et thèmes. Soit en les téléversant, soit en ind…
|
| H A D | intro_plugins.txt | 1 Voilà la liste des extensions actuellement installées. À partir d'ici, vous pouvez les activer, les…
|
| H A D | intro_search.txt | 1 Cet onglet vous donne accès à toutes les [[doku>fr:plugins|extensions]] et les [[doku>fr:template|t…
|
| /dokuwiki/inc/lang/fr/ |
| H A D | adminplugins.txt | 1 ===== Extensions supplémentaires =====
|
| /dokuwiki/inc/lang/oc/ |
| H A D | adminplugins.txt | 1 ===== Extensions suplementàrias =====
|
| /dokuwiki/lib/plugins/extension/lang/en/ |
| H A D | lang.php | 40 $lang['author_hint'] = 'Search extensions by this author'; 77 … = 'This extension is marked as conflicting with the following installed extensions: %s'; 117 … = 'Your PHP seems to miss SSL support. Downloading will not work for many DokuWiki extensions.'; 119 $lang['popularity_high'] = 'This is one of the most popular extensions'; 131 $lang['js']['filter'] = 'Show updatable extensions only';
|
| /dokuwiki/vendor/splitbrain/lesserphp/ |
| H A D | .phpcs.xml | 11 <arg name="extensions" value="php"/>
|
| /dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/ |
| H A D | X509.php | 10 * The extensions are from {@link http://tools.ietf.org/html/rfc5280 RFC5280} and 11 …961027104704/http://www3.netscape.com/eng/security/cert-exts.html Netscape Certificate Extensions}. 260 private static $extensions = []; variable in phpseclib3\\File\\X509 404 // Netscape Object Identifiers from "Netscape Certificate Extensions" 410 // the following are X.509 extensions not supported by phpseclib 476 if ($this->isSubArrayValid($x509, 'tbsCertificate/extensions')) { 477 $this->mapInExtensions($x509, 'tbsCertificate/extensions'); 535 foreach (self::$extensions as $extension) { 536 $filters['tbsCertificate']['extensions'][] = $extension; 548 $this->mapOutExtensions($cert, 'tbsCertificate/extensions'); [all …]
|
| /dokuwiki/lib/plugins/popularity/lang/fr/ |
| H A D | intro.txt | 7 …sion de DokuWiki, le nombre et la taille de vos pages et fichiers, les extensions installées ainsi…
|
| /dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/ |
| H A D | JSCreator.php | 32 * Overrides parent to produce .js extensions
|
| /dokuwiki/lib/plugins/extension/lang/ca/ |
| H A D | lang.php | 8 $lang['menu'] = 'Gestor d’extensions'; 37 $lang['author_hint'] = 'Cerca extensions d’aquest autor';
|
| /dokuwiki/vendor/php81_bc/strftime/ |
| H A D | .gitattributes | 1 # Define the line ending behavior of the different file extensions
|