Home
last modified time | relevance | path

Searched +full:start +(+path:plugin +path:siteexport) -(+path:plugin +path:siteexport +path:lang) (Results 1 – 11 of 11) sorted by relevance

/plugin/siteexport/
H A Dhelper.php15 private $start, $end;
18 * @param integer $start
21 public function __construct($start, $end=null) { argument
22 $this->start = $start;
27 return $elem[2] >= $this->start && ( is_null( $this->end ) || $elem[2] <= $this->end);
93 public function __getOrderedListOfPagesForID($IDs, $start=null) argument
122 if ( $start != null ) {
124 $sortIdentifier = intval(p_get_metadata($start, 'mergecompare'));
133 public function __getOrderedListOfPagesForStartEnd($ID, $start, $end) argument
138 …ay_filter($values, array(new helper_plugin_siteexport_page_remove(intval($start), intval($end)), '…
[all …]
H A DREADME.md122 ### Start Process
125 Now: Hit start and your pages will be exported.
H A DLICENSE289 to attach them to the start of each source file to most effectively
H A Dcron.php263 // Lets start over!
/plugin/siteexport/syntax/
H A Dtoctools.php74 …nstructionstoHandler( $match, $state, $pos, $handler, array('mergehint', 'start', $data, sectionID…
95 $startHint = '<!-- MergeHint Start for "';
98 if ( $pos == 'start' ) {
126 } else if ( $mode = 'markdown' && $type == 'mergehint' && $pos == 'start' ) {
H A Dtoc.php53 return array('start' => true, 'pos' => $pos, 'options' => $this->options);
129 if (is_array($data) && $data['start'] == true) {
178 $renderer->doc = ''; // Start fresh!
279 } else if (!isset($data['start']) && !isset($data['pos'])) {
341 //add an anchor to find start of a inserted page
381 //if its the document start, cut off the first element(document information)
541 private function _findNextHeaderSection($section, $level, &$start, &$end, $headerName = null) { argument
547 for ($i = $start; $i < $inCount; $i++) {
561 $start = $currentSlice = $i;
610 … // Okay, this was a toctools whatever ... but maybe not a start of the same type.
[all …]
/plugin/siteexport/inc/
H A Dtoc.php163 $elemToAdd['isStartPage'] = noNS($elemToAdd['id']) == $conf['start'];
225 // Look for start page
226 if (!empty($CURRENTNODE[$conf['start']]))
230 $XML .= $this->__TOCItem($CURRENTNODE[$conf['start']], $DEPTH, !$didOpenItem);
231 unset($CURRENTNODE[$conf['start']]);
339 if (empty($indexTitle)) $indexTitle = $this->functions->getSiteTitle($conf['start']);
430 // Skip if this is not a start
431 if ($NODE != $conf['start']) { continue; }
H A Dfunctions.php74 …if (!page_exists($NS) && array_pop($NSa) != strtolower($conf['start'])) { // Compare to lowercase …
75 $NS .= ':' . $conf['start'];
/plugin/siteexport/action/
H A Daggregate.php27 return getNS($namespace) . ':' . $conf['start'];
H A Dajax.php792 if (substr($ID, -1) == ':' || empty($ID)) $ID .= $conf['start'];
/plugin/siteexport/renderer/
H A Dpdf.php207 public function startSectionEdit($start, $data) { argument