2015-07-07 06:24:51 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class pluginPages extends Plugin {
|
|
|
|
|
|
|
|
public function init()
|
|
|
|
{
|
|
|
|
$this->dbFields = array(
|
2016-06-05 03:31:07 +02:00
|
|
|
'homeLink'=>1,
|
2015-08-01 18:28:47 +02:00
|
|
|
'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-09-23 00:41:10 +02:00
|
|
|
$html .= '<label>'.$Language->get('Plugin label').'</label>';
|
2015-08-01 18:28:47 +02:00
|
|
|
$html .= '<input name="label" id="jslabel" type="text" value="'.$this->getDbField('label').'">';
|
|
|
|
$html .= '</div>';
|
|
|
|
|
|
|
|
$html .= '<div>';
|
2016-06-05 03:31:07 +02:00
|
|
|
$html .= '<input type="hidden" name="homeLink" value="0">';
|
|
|
|
$html .= '<input name="homeLink" id="jshomeLink" type="checkbox" value="1" '.($this->getDbField('homeLink')?'checked':'').'>';
|
2015-07-14 04:16:28 +02:00
|
|
|
$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-08-07 04:13:55 +02:00
|
|
|
public function siteSidebar()
|
2015-07-07 06:24:51 +02:00
|
|
|
{
|
|
|
|
global $Language;
|
|
|
|
global $pagesParents;
|
2015-09-08 19:40:25 +02:00
|
|
|
global $Site, $Url;
|
2015-09-10 04:33:31 +02:00
|
|
|
|
2015-07-07 06:24:51 +02:00
|
|
|
$html = '<div class="plugin plugin-pages">';
|
2015-09-08 02:51:48 +02:00
|
|
|
|
2015-09-20 23:46:50 +02:00
|
|
|
// Print the label if not empty.
|
2015-09-08 02:51:48 +02:00
|
|
|
$label = $this->getDbField('label');
|
|
|
|
if( !empty($label) ) {
|
|
|
|
$html .= '<h2>'.$label.'</h2>';
|
|
|
|
}
|
|
|
|
|
2015-07-07 06:24:51 +02:00
|
|
|
$html .= '<div class="plugin-content">';
|
|
|
|
$html .= '<ul>';
|
|
|
|
|
2015-09-20 23:46:50 +02:00
|
|
|
// Show home link ?
|
2015-07-14 04:16:28 +02:00
|
|
|
if($this->getDbField('homeLink')) {
|
2015-09-20 23:46:50 +02:00
|
|
|
$html .= '<li>';
|
|
|
|
$html .= '<a class="parent'.( ($Url->whereAmI()=='home')?' active':'').'" href="'.$Site->homeLink().'">'.$Language->get('Home').'</a>';
|
|
|
|
$html .= '</li>';
|
2015-07-14 04:16:28 +02:00
|
|
|
}
|
|
|
|
|
2015-09-20 23:46:50 +02:00
|
|
|
$parents = $pagesParents[NO_PARENT_CHAR];
|
2015-07-07 06:24:51 +02:00
|
|
|
foreach($parents as $parent)
|
|
|
|
{
|
2015-11-14 17:47:26 +01:00
|
|
|
// Check if the parent is published
|
|
|
|
if( $parent->published() )
|
2015-07-07 06:24:51 +02:00
|
|
|
{
|
2015-11-14 17:47:26 +01:00
|
|
|
// Print the parent
|
|
|
|
$html .= '<li>';
|
|
|
|
$html .= '<a class="parent '.( ($parent->key()==$Url->slug())?' active':'').'" href="'.$parent->permalink().'">'.$parent->title().'</a>';
|
2015-07-07 06:24:51 +02:00
|
|
|
|
2015-11-14 17:47:26 +01:00
|
|
|
// Check if the parent has children
|
|
|
|
if(isset($pagesParents[$parent->key()]))
|
2015-07-07 06:24:51 +02:00
|
|
|
{
|
2015-11-14 17:47:26 +01:00
|
|
|
$children = $pagesParents[$parent->key()];
|
|
|
|
|
|
|
|
// Print children
|
|
|
|
$html .= '<ul class="children">';
|
|
|
|
foreach($children as $child)
|
|
|
|
{
|
|
|
|
// Check if the child is published
|
|
|
|
if( $child->published() )
|
|
|
|
{
|
|
|
|
$html .= '<li class="child">';
|
|
|
|
$html .= '<a class="'.( ($child->key()==$Url->slug())?' active':'').'" href="'.$child->permalink().'">'.$child->title().'</a>';
|
|
|
|
$html .= '</li>';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$html .= '</ul>';
|
2015-07-07 06:24:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-11 03:01:50 +02:00
|
|
|
$html .= '</li></ul>';
|
2015-07-07 06:24:51 +02:00
|
|
|
$html .= '</div>';
|
|
|
|
$html .= '</div>';
|
|
|
|
|
|
|
|
return $html;
|
|
|
|
}
|
2015-12-01 01:44:45 +01:00
|
|
|
}
|