Improves on Navigation and Static Pages plugin

This commit is contained in:
floppy0 2018-03-07 12:31:08 +01:00
parent b80053e6d5
commit acae61f9d8
5 changed files with 134 additions and 64 deletions

View File

@ -1,10 +1,10 @@
{ {
"plugin-data": "plugin-data":
{ {
"name": "Último contenido", "name": "Barra de Navegación",
"description": "Cree su propio menú de navegación con las últimas páginas o páginas estáticas." "description": "Cree tu propio menú de navegación"
}, },
"home-link": "Enlace Home", "home-link": "Enlace de inicio",
"show-the-home-link-on-the-sidebar": "Mostrar el vínculo de inicio en la barra lateral.", "show-the-home-link-on-the-sidebar": "Mostrar el vínculo de inicio en la barra de navegación.",
"amount-of-items": "Cantidad de artículos" "amount-of-items": "Cantidad de artículos"
} }

View File

@ -8,9 +8,7 @@ class pluginNavigation extends Plugin {
$this->dbFields = array( $this->dbFields = array(
'label'=>'Navigation', 'label'=>'Navigation',
'homeLink'=>true, 'homeLink'=>true,
'amountOfItems'=>5, 'amountOfItems'=>5
'staticPages'=>true,
'pages'=>true
); );
} }
@ -33,22 +31,6 @@ class pluginNavigation extends Plugin {
$html .= '</select>'; $html .= '</select>';
$html .= '</div>'; $html .= '</div>';
$html .= '<div>';
$html .= '<label>'.$Language->get('Show static pages').'</label>';
$html .= '<select name="staticPages">';
$html .= '<option value="true" '.($this->getValue('staticPages')===true?'selected':'').'>'.$Language->get('Enabled').'</option>';
$html .= '<option value="false" '.($this->getValue('staticPages')===false?'selected':'').'>'.$Language->get('Disabled').'</option>';
$html .= '</select>';
$html .= '</div>';
$html .= '<div>';
$html .= '<label>'.$Language->get('Show pages').'</label>';
$html .= '<select name="pages">';
$html .= '<option value="true" '.($this->getValue('pages')===true?'selected':'').'>'.$Language->get('Enabled').'</option>';
$html .= '<option value="false" '.($this->getValue('pages')===false?'selected':'').'>'.$Language->get('Disabled').'</option>';
$html .= '</select>';
$html .= '</div>';
if (ORDER_BY=='date') { if (ORDER_BY=='date') {
$html .= '<div>'; $html .= '<div>';
$html .= '<label>'.$Language->get('Amount of items').'</label>'; $html .= '<label>'.$Language->get('Amount of items').'</label>';
@ -86,24 +68,13 @@ class pluginNavigation extends Plugin {
$html .= '</li>'; $html .= '</li>';
} }
// Show static pages // Pages order by position
if ($this->getValue('staticPages')) {
$staticPages = buildStaticPages();
foreach ($staticPages as $page) {
$html .= '<li>';
$html .= '<a href="' . $page->permalink() . '">' . $page->title() . '</a>';
$html .= '</li>';
}
}
// Show pages
if ($this->getValue('pages')) {
if (ORDER_BY=='position') { if (ORDER_BY=='position') {
// Get parents // Get parents
$parents = buildParentPages(); $parents = buildParentPages();
foreach ($parents as $parent) { foreach ($parents as $parent) {
$html .= '<li class="parent">'; $html .= '<li class="parent">';
$html .= '<b><a href="' . $parent->permalink() . '">' . $parent->title() . '</a></b>'; $html .= '<a href="' . $parent->permalink() . '">' . $parent->title() . '</a>';
if ($parent->hasChildren()) { if ($parent->hasChildren()) {
// Get children // Get children
@ -118,7 +89,9 @@ class pluginNavigation extends Plugin {
} }
$html .= '</li>'; $html .= '</li>';
} }
} else { }
// Pages order by date
else {
// List of published pages // List of published pages
$onlyPublished = true; $onlyPublished = true;
$pageNumber = 1; $pageNumber = 1;
@ -132,7 +105,6 @@ class pluginNavigation extends Plugin {
$html .= '</li>'; $html .= '</li>';
} }
} }
}
$html .= '</ul>'; $html .= '</ul>';
$html .= '</div>'; $html .= '</div>';

View File

@ -0,0 +1,9 @@
{
"plugin-data":
{
"name": "Static Pages",
"description": "Create your own navigation menu with static pages."
},
"home-link": "Home link",
"show-the-home-link-on-the-sidebar": "Show the home link on the sidebar."
}

View File

@ -0,0 +1,10 @@
{
"author": "Bludit",
"email": "",
"website": "https://plugins.bludit.com",
"version": "2.3",
"releaseDate": "2018-03-07",
"license": "MIT",
"compatible": "2.3",
"notes": ""
}

View File

@ -0,0 +1,79 @@
<?php
class pluginStaticPages extends Plugin {
public function init()
{
// Fields and default values for the database of this plugin
$this->dbFields = array(
'label'=>'Static Pages',
'homeLink'=>true
);
}
// Method called on the settings of the plugin on the admin area
public function form()
{
global $Language;
$html = '<div>';
$html .= '<label>'.$Language->get('Label').'</label>';
$html .= '<input id="jslabel" name="label" type="text" value="'.$this->getValue('label').'">';
$html .= '<span class="tip">'.$Language->get('This title is almost always used in the sidebar of the site').'</span>';
$html .= '</div>';
$html .= '<div>';
$html .= '<label>'.$Language->get('Home link').'</label>';
$html .= '<select name="homeLink">';
$html .= '<option value="true" '.($this->getValue('homeLink')===true?'selected':'').'>'.$Language->get('Enabled').'</option>';
$html .= '<option value="false" '.($this->getValue('homeLink')===false?'selected':'').'>'.$Language->get('Disabled').'</option>';
$html .= '</select>';
$html .= '</div>';
return $html;
}
// Method called on the sidebar of the website
public function siteSidebar()
{
global $Language;
global $Url;
global $Site;
global $dbPages;
// HTML for sidebar
$html = '<div class="plugin plugin-static-pages">';
// Print the label if not empty
$label = $this->getValue('label');
if (!empty($label)) {
$html .= '<h2 class="plugin-label">'.$label.'</h2>';
}
$html .= '<div class="plugin-content">';
$html .= '<ul>';
// Show Home page link
if ($this->getValue('homeLink')) {
$html .= '<li>';
$html .= '<a href="' . $Site->url() . '">' . $Language->get('Home page') . '</a>';
$html .= '</li>';
}
// Show static pages
if ($this->getValue('staticPages')) {
$staticPages = buildStaticPages();
foreach ($staticPages as $page) {
$html .= '<li>';
$html .= '<a href="' . $page->permalink() . '">' . $page->title() . '</a>';
$html .= '</li>';
}
}
$html .= '</ul>';
$html .= '</div>';
$html .= '</div>';
return $html;
}
}