Home
last modified time | relevance | path

Searched +full:move +(+path:plugin +path:move) -(+path:plugin +path:move +path:lang) (Results 1 – 25 of 36) sorted by path

12

/plugin/approve/action/
H A Dmove.php23 * @param bool $ispage is this a page move operation?
39 //move revision history
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DriveActivity/
H A DMove.php20 class Move extends \Google\Collection class
59 class_alias(Move::class, 'Google_Service_DriveActivity_Move');
/plugin/ireadit/action/
H A Dmove.php23 * @param bool $ispage is this a page move operation?
38 //move revision history
/plugin/move/
H A DMenuItem.php2 namespace dokuwiki\plugin\move;
9 * @package dokuwiki\plugin\move
H A DREADME1 move Plugin for DokuWiki
3 Move and rename pages and media files while maintaining the links.
6 http://www.dokuwiki.org/plugin:move
9 lib/plugins/move/ - if the folder is called different it
H A Ddeleted.files15 script/move.js
/plugin/move/_test/
H A DaffectedPagesNs.test.php5 * Test cases for the move plugin
12 protected $pluginsEnabled = array('move',);
H A Dcache_handling.test.php7 * Test cases for the move plugin
16 $this->pluginsEnabled[] = 'move';
38 /** @var helper_plugin_move_op $move */
39 $move = plugin_load('helper', 'move_op');
40 $this->assertTrue($move->movePage('wiki:foo:start', 'wiki:foo2:start'));
H A DfindMissingDocuments.test.php18 * Test cases for helper_plugin_move_plan::stepThroughDocuments function of the move plugin
28 protected $pluginsEnabled = array('move',);
H A Dhandler.test.php8 * Test cases for the move plugin
16 $this->pluginsEnabled[] = 'move';
63 ':bang' => 'bang', // absolute link that did not move
64 'foo' => 'used:to:be:foo', // relative link that did not move
65 'this1' => 'used:to:be:that1', // relative link that did not move but is in move list
H A Dlog.test.php4 * Test cases log functionality of the move plugin
13 protected $pluginsEnabled = array('move',);
H A Dmediamove.test.php7 * Test cases for the move plugin
15 $this->pluginsEnabled[] = 'move';
32 /** @var helper_plugin_move_op $move */
33 $move = plugin_load('helper', 'move_op');
34 $this->assertTrue($move->movePage($src, $dst));
55 /** @var helper_plugin_move_op $move */
56 $move = plugin_load('helper', 'move_op');
57 $this->assertTrue($move->moveMedia($src, $dst));
83 /** @var helper_plugin_move_op $move */
84 $move
[all...]
H A Dnamespace_move.test.php7 * Test cases for namespace move functionality of the move plugin
15 $this->pluginsEnabled[] = 'move';
35 * This is an integration test, which checks the correct working of an entire namespace move.
71 * This is an integration test, which checks the correct working of an entire namespace move.
122 * This is an integration test, which checks the correct working of an entire namespace move.
182 $conf['plugin']['move']['autorewrite'] = 0;
193 $lockfile = $conf['lockdir'] . 'move.lock';
226 * This is an integration test, which checks the correct working of an entire namespace move.
271 * This is an integration test, which checks the correct working of an entire namespace move
[all...]
H A Dpagemove.test.php7 * Test cases for the move plugin
21 // @todo Move page to an ID which already exists
26 $this->pluginsEnabled[] = 'move';
530 * Ensure that absolute links stay absolute. See https://github.com/michitux/dokuwiki-plugin-move/pull/6#discussion_r15698440
542 /** @var helper_plugin_move_op $move */
543 $move = plugin_load('helper', 'move_op');
544 $this->assertTrue($move->movePage('wiki:foo:start', 'wiki:foo2:start'));
559 /** @var helper_plugin_move_op $move */
560 $move = plugin_load('helper', 'move_op');
562 $this->assertTrue($move
[all...]
H A Dplan.test.php8 * Test cases for the move plugin
64 * Move a page out of a namespace and then move the namespace elsewhere
H A DstepThroughDocuments.test.php59 * Test cases for helper_plugin_move_plan::stepThroughDocuments function of the move plugin
224 $conf['plugin']['move']['autoskip'] = '1';
H A Dtpl.test.php4 * tests for the template button of the move plugin
16 protected $pluginsEnabled = array('move');
/plugin/move/action/
H A Dprogress.php3 * Move Plugin AJAX handler to step through a move plan
H A Drename.php3 * Move Plugin Page Rename Functionality
92 array_splice($event->data['items'], -1, 0, array(new \dokuwiki\plugin\move\MenuItem()));
210 * Use this in your template to add a simple "move this page" link
213 * trigger the page move dialog.
H A Drewrite.php3 * Move Plugin Page Rewrite Functionality
38 // only rewrite if not in move already
H A Dtree.php3 * Move Plugin Tree Loading Functionality
/plugin/move/admin/
H A Dmain.php3 * Plugin : Move
14 * Admin component of the move plugin. Provides the user interface.
94 * Get input variables and create a move plan from them
160 * Display the simple move form
165 echo $this->locale_xhtml('move');
193 * Display the GUI while the move progresses
238 * Display a move workflow button
241 * abort - abort the whole move
H A Dtree.php164 if($item['id']) $ret .= '<img class="rename" src="'. DOKU_BASE .'lib/plugins/move/images/rename.png" />';
165 else $ret .= '<img class="add" src="' . DOKU_BASE . 'lib/plugins/move/images/folder_add.png" />';
/plugin/move/helper/
H A Dfile.php3 * Move Plugin File Mover
21 * Move the meta files of a page
25 * @param string $dst_ns The namespace after the move
26 * @param string $dst_name The basename after the move (empty for namespace moves)
37 * Move the old revisions of a page
41 * @param string $dst_ns The namespace after the move
42 * @param string $dst_name The basename after the move (empty for namespace moves)
53 * Move the meta files of the page that is specified in the options.
57 * @param string $dst_ns The namespace after the move
58 * @param string $dst_name The basename after the move (empt
[all...]
H A Dhandler.php3 * Move Plugin Rewriting Handler
13 * Handler class for move. It does the actual rewriting of the content.
38 * Initialize the move handler.
84 foreach($moves as $move) {
85 if($move[0] == $old) {
86 $old = $move[1];

12