Update plugin.php

This commit is contained in:
alexonweb 2016-11-09 00:56:41 +03:00 committed by GitHub
parent dbaf520653
commit 1b56a75cdf
1 changed files with 26 additions and 15 deletions

View File

@ -6,6 +6,7 @@ class pluginPages extends Plugin {
{ {
$this->dbFields = array( $this->dbFields = array(
'homeLink'=>1, 'homeLink'=>1,
'childrens'=>1,
'label'=>'Pages' 'label'=>'Pages'
); );
} }
@ -25,6 +26,12 @@ class pluginPages extends Plugin {
$html .= '<label class="forCheckbox" for="jshomeLink">'.$Language->get('Show home link').'</label>'; $html .= '<label class="forCheckbox" for="jshomeLink">'.$Language->get('Show home link').'</label>';
$html .= '</div>'; $html .= '</div>';
$html .= '<div>';
$html .= '<input type="hidden" name="childrens" value="0">';
$html .= '<input name="childrens" id="jschildrens" type="checkbox" value="1" '.($this->getDbField('childrens')?'checked':'').'>';
$html .= '<label class="forCheckbox" for="jschildrens">'.$Language->get('Show childrens').'</label>';
$html .= '</div>';
return $html; return $html;
} }
@ -62,6 +69,9 @@ class pluginPages extends Plugin {
$html .= '<li class="parent">'; $html .= '<li class="parent">';
$html .= '<a class="parent'.( ($parent->key()==$Url->slug())?' active':'').'" href="'.$parent->permalink().'">'.$parent->title().'</a>'; $html .= '<a class="parent'.( ($parent->key()==$Url->slug())?' active':'').'" href="'.$parent->permalink().'">'.$parent->title().'</a>';
// Show children elements?
if($this->getDbField('childrens')) {
// Check if the parent has children // Check if the parent has children
if(isset($pagesParents[$parent->key()])) if(isset($pagesParents[$parent->key()]))
{ {
@ -81,6 +91,7 @@ class pluginPages extends Plugin {
} }
$html .= '</ul>'; $html .= '</ul>';
} }
}
$html .= '</li>'; $html .= '</li>';
} }