bludit/plugins/pages/plugin.php

75 lines
1.7 KiB
PHP
Raw Normal View History

2015-07-07 06:24:51 +02:00
<?php
class pluginPages extends Plugin {
public function init()
{
$this->dbFields = array(
2015-08-01 18:28:47 +02:00
'homeLink'=>true,
'label'=>'Pages'
2015-07-07 06:24:51 +02:00
);
}
2015-07-14 04:16:28 +02:00
public function form()
{
global $Language;
$html = '<div>';
2015-08-01 18:28:47 +02:00
$html .= '<label>Plugin label</label>';
$html .= '<input name="label" id="jslabel" type="text" value="'.$this->getDbField('label').'">';
$html .= '</div>';
$html .= '<div>';
2015-07-14 04:16:28 +02:00
$html .= '<input name="homeLink" id="jshomeLink" type="checkbox" value="true" '.($this->getDbField('homeLink')?'checked':'').'>';
$html .= '<label class="forCheckbox" for="jshomeLink">'.$Language->get('Show home link').'</label>';
2015-08-01 18:28:47 +02:00
$html .= '</div>';
2015-07-14 04:16:28 +02:00
return $html;
}
2015-07-07 06:24:51 +02:00
public function onSiteSidebar()
{
global $Language;
global $pagesParents;
2015-07-14 04:16:28 +02:00
global $Site;
2015-07-07 06:24:51 +02:00
$html = '<div class="plugin plugin-pages">';
$html .= '<h2>'.$this->getDbField('label').'</h2>';
2015-07-07 06:24:51 +02:00
$html .= '<div class="plugin-content">';
$parents = $pagesParents[NO_PARENT_CHAR];
$html .= '<ul>';
2015-07-14 04:16:28 +02:00
if($this->getDbField('homeLink')) {
$html .= '<li><a class="parent" href="'.$Site->homeLink().'">'.$Language->get('Home').'</a></li>';
}
2015-07-07 06:24:51 +02:00
foreach($parents as $parent)
{
// Print the parent
$html .= '<li><a class="parent" href="'.$parent->permalink().'">'.$parent->title().'</a></li>';
// Check if the parent hash children
if(isset($pagesParents[$parent->key()]))
{
$children = $pagesParents[$parent->key()];
// Print the children
$html .= '<li><ul>';
foreach($children as $child)
{
$html .= '<li><a class="children" href="'.$child->permalink().'">— '.$child->title().'</a></li>';
}
$html .= '</ul></li>';
}
}
$html .= '</ul>';
$html .= '</div>';
$html .= '</div>';
return $html;
}
}