Home
last modified time | relevance | path

Searched refs:plugin (Results 1 – 25 of 3801) sorted by relevance

12345678910>>...153

/plugin/linkfix/_test/
Dlinkfix.test.php21 $plugin = new test_admin_plugin_linkfix();
23 $plugin->changefrom = 'linkfix:';
24 $plugin->changeto = 'linkfox:';
25 $plugin->execute();
32 $plugin = new test_admin_plugin_linkfix();
34 $plugin->changefrom = 'http://www.google';
36 $plugin->isextern = true;
37 $plugin->execute();
44 $plugin = new test_admin_plugin_linkfix();
46 $plugin->changefrom = 'something:logo.';
[all …]
/plugin/farmer/action/
Dajax.php97 $plugin = $plugins[$pname];
100 if ($plugin['isdefault']) {
101 $new = (int) !$plugin['actual'];
109 $plugin = $plugins[$pname];
111 echo $this->createPluginMatrixCell($plugin, $animal);
135 foreach ($plugins as $plugin) {
136 echo '<th><div>' . hsc($plugin['name']) . '</div></th>';
145 foreach ($plugins as $plugin) {
146 echo $this->createPluginMatrixCell($plugin, $this->getLang('plugin_default'), true);
154 foreach ($plugins as $plugin) {
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Auth/
DPluginTest.php15 $plugin = new Plugin(new Backend\Mock(),'realm');
16 $this->assertTrue($plugin instanceof Plugin);
17 $fakeServer->addPlugin($plugin);
18 $this->assertEquals($plugin, $fakeServer->getPlugin('auth'));
19 $this->assertInternalType('array', $plugin->getPluginInfo());
29 $plugin = new Plugin(new Backend\Mock());
30 $fakeServer->addPlugin($plugin);
47 $plugin = new Plugin($backend);
48 $fakeServer->addPlugin($plugin);
63 $plugin = new Plugin();
[all …]
/plugin/pageredirect/
DChangeLog.md1 # Dokuwiki pageredirect plugin change log
9 [UNRELEASED]: https://github.com/glensc/dokuwiki-plugin-pageredirect/compare/20221120...master
14 - Add Move plugin support, #40
16 [20221120]: https://github.com/glensc/dokuwiki-plugin-pageredirect/compare/20220103...20221120
25 [20220103]: https://github.com/glensc/dokuwiki-plugin-pageredirect/compare/20170512...20220103
29 - plugin now requires dokuwiki 2014-05-05 (Ponder Stibbons)
33 - fix plugin conflict with creole plugin. [36ebf4a], [#18]
37 [20170512]: https://github.com/glensc/dokuwiki-plugin-pageredirect/compare/20160924...20170512
38 [#18]: https://github.com/glensc/dokuwiki-plugin-pageredirect/issues/18
39 [#19]: https://github.com/glensc/dokuwiki-plugin-pageredirect/issues/19
[all …]
/plugin/columns/
Dstyle.css1 div.dokuwiki table.columns-plugin {
8 div.dokuwiki table.columns-plugin td.columns-plugin {
15 div.dokuwiki table.columns-plugin td.columns-plugin.first {
19 div.dokuwiki table.columns-plugin td.columns-plugin.last {
23 div.dokuwiki table.columns-plugin td.columns-plugin.left {
27 div.dokuwiki table.columns-plugin td.columns-plugin.center {
31 div.dokuwiki table.columns-plugin td.columns-plugin.right {
35 div.dokuwiki table.columns-plugin td.columns-plugin.center table {
40 div.dokuwiki table.columns-plugin td.columns-plugin.right table {
/plugin/snow/
Dscript.js4 snowStorm.excludeMobile = JSINFO.plugin.snow.excludemobile;
5 snowStorm.flakesMax = JSINFO.plugin.snow.flakesmax;
6 snowStorm.flakesMaxActive = JSINFO.plugin.snow.flakesmaxactive;
7 snowStorm.animationInterval = JSINFO.plugin.snow.animationinterval;
8 snowStorm.useGPU = JSINFO.plugin.snow.usegpu;
9 snowStorm.followMouse = JSINFO.plugin.snow.followmouse;
10 snowStorm.snowColor = JSINFO.plugin.snow.color;
11 snowStorm.snowStick = JSINFO.plugin.snow.snowstick;
12 snowStorm.useMeltEffect = JSINFO.plugin.snow.usemelteffect;
13 snowStorm.useTwinkleEffect = JSINFO.plugin.snow.usetwinkleeffect;
[all …]
DREADME.md1 # snow plugin for DokuWiki
5 All documentation for this plugin can be found at: http://dokuwiki.org/plugin:snow
7 If you install this plugin manually, make sure it is installed in lib/plugins/snow/ - if the folder…
14 …s://github.com/mprins/dokuwiki-plugin-snow/actions/workflows/CI.yml/badge.svg)](https://github.com…
15 …r-ci.com/g/mprins/dokuwiki-plugin-snow/badges/quality-score.png?b=master)](https://scrutinizer-ci.…
16 …//img.shields.io/github/issues/mprins/dokuwiki-plugin-snow.svg)](https://github.com/mprins/dokuwik…
17 …://img.shields.io/github/forks/mprins/dokuwiki-plugin-snow.svg)](https://github.com/mprins/dokuwik…
18 …://img.shields.io/github/stars/mprins/dokuwiki-plugin-snow.svg)](https://github.com/mprins/dokuwik…
/plugin/authcas/
DREADME.md4 - the [authsplit](https://www.dokuwiki.org/plugin:authsplit) extension
5 - the [authldap](https://www.dokuwiki.org/plugin:authldap) extension
21 - the [authsplit](https://www.dokuwiki.org/plugin:authsplit) extension
22 - the [authldap](https://www.dokuwiki.org/plugin:authldap) extension
35 $conf['plugin']['authsplit']['primary_authplugin'] = 'authcas';
36 $conf['plugin']['authsplit']['secondary_authplugin'] = 'authldap';
38 $conf['plugin']['authcas']['handlelogoutrequestTrustedHosts'] = Array("");
39 $conf['plugin']['authcas']['server'] = 'cas.univ.fr';
40 $conf['plugin']['authcas']['port'] = 443;
42 $conf['plugin']['authcas']['rootcas'] = '';
[all …]
/plugin/oauthosm/
DOpenStreetMap.php3 namespace dokuwiki\plugin\oauthosm;
5 use dokuwiki\plugin\oauth\Service\AbstractOAuth2Base;
15 $plugin = plugin_load('helper', 'oauthosm');
16 return 0 !== $plugin->getConf('needs-state');
22 $plugin = plugin_load('helper', 'oauthosm');
23 return new Uri($plugin->getConf('authurl'));
29 $plugin = plugin_load('helper', 'oauthosm');
30 return new Uri($plugin->getConf('tokenurl'));
38 $plugin = plugin_load('helper', 'oauthosm');
40 return (int) $plugin->getConf('authmethod');
/plugin/oauthgeneric/
DGeneric.php3 namespace dokuwiki\plugin\oauthgeneric;
5 use dokuwiki\plugin\oauth\Service\AbstractOAuth2Base;
15 $plugin = plugin_load('helper', 'oauthgeneric');
16 return 0 !== $plugin->getConf('needs-state');
22 $plugin = plugin_load('helper', 'oauthgeneric');
23 return new Uri($plugin->getConf('authurl'));
29 $plugin = plugin_load('helper', 'oauthgeneric');
30 return new Uri($plugin->getConf('tokenurl'));
38 $plugin = plugin_load('helper', 'oauthgeneric');
40 return (int) $plugin->getConf('authmethod');
/plugin/openlayersmapoverlays/
DREADME.md1 # Overlay add-on for the openlayersmap plugin for DokuWiki
3 ![logo](https://raw.githubusercontent.com/mprins/dokuwiki-plugin-openlayersmap/master/logo.gif)
7 All documentation for this plugin can be found at https://www.dokuwiki.org/plugin:openlayersmapover…
8 This plugin requires that you install https://www.dokuwiki.org/plugin:openlayersmap
10 If you install this plugin manually, make sure it is installed in
18 …ub.com/mprins/dokuwiki-plugin-openlayersmapoverlays/actions/workflows/CI.yml/badge.svg)](https://g…
19 …g/mprins/dokuwiki-plugin-openlayersmapoverlays/badges/quality-score.png?b=master)](https://scrutin…
20 …elds.io/github/issues/mprins/dokuwiki-plugin-openlayersmapoverlays.svg)](https://github.com/mprins…
21 …ields.io/github/forks/mprins/dokuwiki-plugin-openlayersmapoverlays.svg)](https://github.com/mprins…
22 …ields.io/github/stars/mprins/dokuwiki-plugin-openlayersmapoverlays.svg)](https://github.com/mprins…
/plugin/refnotes/
Dlocale.php26 private $plugin; variable in refnotes_localization
31 public static function initialize($plugin) { argument
33 self::$instance = new refnotes_localization($plugin);
51 private function __construct($plugin) { argument
52 $this->plugin = $plugin;
59 return $this->plugin->getLang($id);
66 return $this->plugin->localFN($id);
73 $this->plugin->setupLocale();
84 foreach ($this->plugin->getRawLang() as $key => $value) {
/plugin/authsqlite/
DREADME.md18 $conf['plugin']['authsqlite']['checkPass'] =
24 $conf['plugin']['authsqlite']['getUserInfo'] =
27 $conf['plugin']['authsqlite']['getGroups'] =
32 $conf['plugin']['authsqlite']['getUsers'] =
36 $conf['plugin']['authsqlite']['FilterLogin'] = 'u.login LIKE \'%{user}\'';
37 $conf['plugin']['authsqlite']['FilterName'] = 'u.fullname LIKE \'%{name}\'';
38 $conf['plugin']['authsqlite']['FilterEmail'] = 'u.email LIKE \'%{email}\'';
39 $conf['plugin']['authsqlite']['FilterGroup'] = 'g.name LIKE \'%{group}\'';
40 $conf['plugin']['authsqlite']['SortOrder'] = 'ORDER BY u.login';
41 $conf['plugin']['authsqlite']['addUser'] =
[all …]
/plugin/data-au/_test/
Dsyntax_plugin_data_entry.test.php48 $plugin = new syntax_plugin_dataau_entry();
51 $result = $plugin->handle($this->exampleEntry, 0, 10, $handler);
92 $plugin = plugin_load('syntax','dataau_entry');
95 $dataau = $plugin->handle($test_entry, 0, 10, $handler);
97 $plugin->render('xhtml',$renderer,$dataau);
113 $plugin = plugin_load('syntax','dataau_entry');
116 $dataau = $plugin->handle($test_entry, 0, 10, $handler);
118 $plugin->render('xhtml',$renderer,$dataau);
134 $plugin = plugin_load('syntax','dataau_entry');
137 $dataau = $plugin->handle($test_entry, 0, 10, $handler);
[all …]
/plugin/autotooltip/
Dscreen.less1 .plugin-autotooltip_tip
18 .plugin-autotooltip_big {
33 .plugin-autotooltip--visible {
37 .plugin-autotooltip-hidden-tip, .plugin-autotooltip-hidden-classes {
41 .plugin-autotooltip_linked {
45 .plugin-autotooltip_simple {
49 .plugin-autotooltip-title {
55 .plugin-autotooltip__blue {
59 .plugin-autotooltip__plain {
65 .plugin-autotooltip__small {
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/
DPluginPropertiesTest.php12 $plugin = new Plugin();
13 $plugin->principalCollectionSet = [
23 $server->addPlugin($plugin);
46 $plugin = new DAV\Auth\Plugin(new DAV\Auth\Backend\Mock(),'realm');
47 $fakeServer->addPlugin($plugin);
48 $plugin = new Plugin();
49 $fakeServer->addPlugin($plugin);
80 $plugin = new Plugin();
82 $server->addPlugin($plugin);
140 $plugin = new Plugin();
[all …]
/plugin/backlinks2/
DREADME.md5 All documentation for the Backlinks Plugin is available online at: http://dokuwiki.org/plugin:backl…
9 …tps://travis-ci.org/mprins/dokuwiki-plugin-backlinks.svg?branch=master)](https://travis-ci.org/mpr…
10 …i.com/g/mprins/dokuwiki-plugin-backlinks/badges/quality-score.png?b=master)](https://scrutinizer-c…
11 …mg.shields.io/github/issues/mprins/dokuwiki-plugin-backlinks.svg)](https://github.com/mprins/dokuw…
12 …img.shields.io/github/forks/mprins/dokuwiki-plugin-backlinks.svg)](https://github.com/mprins/dokuw…
13 …img.shields.io/github/stars/mprins/dokuwiki-plugin-backlinks.svg)](https://github.com/mprins/dokuw…
14 …cense-GPLv2-blue.svg)](https://raw.githubusercontent.com/mprins/dokuwiki-plugin-backlinks/master/C…
/plugin/description/
DREADME.md5 * http://dokuwiki.org/plugin:description
9 …/github.com/mprins/dokuwiki-plugin-description/actions/workflows/CI.yml/badge.svg)](https://github…
10 ….com/g/mprins/dokuwiki-plugin-description/badges/quality-score.png?b=master)](https://scrutinizer-…
11 …g.shields.io/github/issues/mprins/dokuwiki-plugin-description.svg)](https://github.com/mprins/doku…
12 …mg.shields.io/github/forks/mprins/dokuwiki-plugin-description.svg)](https://github.com/mprins/doku…
13 …mg.shields.io/github/stars/mprins/dokuwiki-plugin-description.svg)](https://github.com/mprins/doku…
14 …cense-GPLv2-blue.svg)](https://raw.githubusercontent.com/mprins/dokuwiki-plugin-description/master…
/plugin/webmaster/
DREADME.md1 dokuwiki-plugin-webmaster
7 …//github.com/mprins/dokuwiki-plugin-webmaster/actions/workflows/CI.yml/badge.svg)](https://github.…
8 …i.com/g/mprins/dokuwiki-plugin-webmaster/badges/quality-score.png?b=master)](https://scrutinizer-c…
9 …mg.shields.io/github/issues/mprins/dokuwiki-plugin-webmaster.svg)](https://github.com/mprins/dokuw…
10 …img.shields.io/github/forks/mprins/dokuwiki-plugin-webmaster.svg)](https://github.com/mprins/dokuw…
11 …img.shields.io/github/stars/mprins/dokuwiki-plugin-webmaster.svg)](https://github.com/mprins/dokuw…
12 …cense-GPLv2-blue.svg)](https://raw.githubusercontent.com/mprins/dokuwiki-plugin-webmaster/master/L…
/plugin/backlinks/
DREADME.md5 All documentation for the Backlinks Plugin is available online at: https://dokuwiki.org/plugin:back…
9 …//github.com/mprins/dokuwiki-plugin-backlinks/actions/workflows/CI.yml/badge.svg)](https://github.…
10 …i.com/g/mprins/dokuwiki-plugin-backlinks/badges/quality-score.png?b=master)](https://scrutinizer-c…
11 …mg.shields.io/github/issues/mprins/dokuwiki-plugin-backlinks.svg)](https://github.com/mprins/dokuw…
12 …img.shields.io/github/forks/mprins/dokuwiki-plugin-backlinks.svg)](https://github.com/mprins/dokuw…
13 …img.shields.io/github/stars/mprins/dokuwiki-plugin-backlinks.svg)](https://github.com/mprins/dokuw…
14 …cense-GPLv2-blue.svg)](https://raw.githubusercontent.com/mprins/dokuwiki-plugin-backlinks/master/C…
/plugin/socialcards/
DREADME.md5 All documentation for this plugin can be found at http://dokuwiki.org/plugin:socialcards
7 If you install this plugin manually, make sure it is installed in lib/plugins/socialcards/ - if the…
12 …/github.com/mprins/dokuwiki-plugin-socialcards/actions/workflows/CI.yml/badge.svg)](https://github…
13 ….com/g/mprins/dokuwiki-plugin-socialcards/badges/quality-score.png?b=master)](https://scrutinizer-…
14 …g.shields.io/github/issues/mprins/dokuwiki-plugin-socialcards.svg)](https://github.com/mprins/doku…
15 …mg.shields.io/github/forks/mprins/dokuwiki-plugin-socialcards.svg)](https://github.com/mprins/doku…
16 …mg.shields.io/github/stars/mprins/dokuwiki-plugin-socialcards.svg)](https://github.com/mprins/doku…
/plugin/openlayersmap/
DREADME.md1 # OpenLayers map plugin for DokuWiki
3 ![logo](https://raw.githubusercontent.com/mprins/dokuwiki-plugin-openlayersmap/master/logo.gif)
7 All documentation for this plugin can be found at https://www.dokuwiki.org/plugin:openlayersmap
9 If you install this plugin manually, make sure it is installed in
17 …github.com/mprins/dokuwiki-plugin-openlayersmap/actions/workflows/CI.yml/badge.svg)](https://githu…
18 …com/g/mprins/dokuwiki-plugin-openlayersmap/badges/quality-score.png?b=master)](https://scrutinizer…
19 ….shields.io/github/issues/mprins/dokuwiki-plugin-openlayersmap.svg)](https://github.com/mprins/dok…
20 …g.shields.io/github/forks/mprins/dokuwiki-plugin-openlayersmap.svg)](https://github.com/mprins/dok…
21 …g.shields.io/github/stars/mprins/dokuwiki-plugin-openlayersmap.svg)](https://github.com/mprins/dok…
/plugin/captcha/
Dimg.php22 $plugin = plugin_load('helper', 'captcha'); variable
24 if ($plugin->getConf('mode') != 'image' && $plugin->getConf('mode') != 'audio') {
31 $code = $plugin->generateCaptchaCode(
32 $plugin->fixedIdent(),
33 $plugin->decrypt($INPUT->str('secret'))
35 echo $plugin->imageCaptcha($code);
Dwav.php22 $plugin = plugin_load('helper', 'captcha'); variable
24 if ($plugin->getConf('mode') != 'audio' && $plugin->getConf('mode') != 'svgaudio') {
32 $code = $plugin->generateCaptchaCode(
33 $plugin->fixedIdent(),
34 $plugin->decrypt($INPUT->str('secret'))
36 echo $plugin->audioCaptcha($code);
/plugin/number/
Dstyle.css1 .plugin-number {
6 .plugin-number-tooltip {
12 .plugin-number-tooltip, .plugin-number-tooltip:before {
24 .plugin-number:hover .plugin-number-tooltip,
25 .plugin-number:hover .plugin-number-tooltip:before {
29 .plugin-number-tooltip:before {

12345678910>>...153