Searched refs:sectionedits (Results 1 – 5 of 5) sorted by relevance
/plugin/header2/ |
H A D | renderer.php | 30 public $sectionedits = array(); // A stack of section edit data variable in renderer_plugin_header2 37 $this->sectionedits[] = array(++$lastsecid, $start, $type, $title); 42 list($id, $start, $type, $title) = array_pop($this->sectionedits); 55 while (count($this->sectionedits) > 0) { 56 if ($this->sectionedits[count($this->sectionedits) - 1][1] <= 1) { 59 array_pop($this->sectionedits);
|
H A D | syntax.php | 142 count($renderer->sectionedits) > 0 && 143 $renderer->sectionedits[count($renderer->sectionedits) - 1][2] === 'section') {
|
/plugin/header3/ |
H A D | renderer.php | 49 public $sectionedits = array(); // A stack of section edit data variable in renderer_plugin_header3 56 $this->sectionedits[] = array(++$lastsecid, $start, $type, $title); 61 list($id, $start, $type, $title) = array_pop($this->sectionedits); 74 while (count($this->sectionedits) > 0) { 75 if ($this->sectionedits[count($this->sectionedits) - 1][1] <= 1) { 78 array_pop($this->sectionedits);
|
H A D | syntax.php | 137 count($renderer->sectionedits) > 0 && 138 $renderer->sectionedits[count($renderer->sectionedits) - 1][2] === 'section') {
|
/plugin/siteexport/renderer/ |
H A D | pdf.php | 116 count($this->sectionedits) > 0 && 117 $this->sectionedits[count($this->sectionedits)-1][2] === 'section') {
|