2015-07-07 06:24:51 +02:00
|
|
|
<?php
|
|
|
|
|
2017-10-04 23:42:14 +02:00
|
|
|
class pluginLatestContent extends Plugin {
|
2015-07-07 06:24:51 +02:00
|
|
|
|
|
|
|
public function init()
|
|
|
|
{
|
2017-05-27 19:46:46 +02:00
|
|
|
// Fields and default values for the database of this plugin
|
2015-07-07 06:24:51 +02:00
|
|
|
$this->dbFields = array(
|
2017-10-04 23:42:14 +02:00
|
|
|
'label'=>'Latest content',
|
2017-05-27 19:46:46 +02:00
|
|
|
'homeLink'=>true,
|
2017-05-29 23:56:07 +02:00
|
|
|
'amountOfItems'=>5
|
2015-07-07 06:24:51 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-05-27 19:46:46 +02:00
|
|
|
// Method called on the settings of the plugin on the admin area
|
2015-07-14 04:16:28 +02:00
|
|
|
public function form()
|
|
|
|
{
|
|
|
|
global $Language;
|
|
|
|
|
|
|
|
$html = '<div>';
|
2017-05-27 19:46:46 +02:00
|
|
|
$html .= '<label>'.$Language->get('Label').'</label>';
|
|
|
|
$html .= '<input id="jslabel" name="label" type="text" value="'.$this->getValue('label').'">';
|
2017-09-09 00:33:14 +02:00
|
|
|
$html .= '<span class="tip">'.$Language->get('This title is almost always used in the sidebar of the site').'</span>';
|
2015-08-01 18:28:47 +02:00
|
|
|
$html .= '</div>';
|
|
|
|
|
|
|
|
$html .= '<div>';
|
2017-06-18 22:44:07 +02:00
|
|
|
$html .= '<label>'.$Language->get('Home link').'</label>';
|
|
|
|
$html .= '<select name="homeLink">';
|
2017-10-11 00:39:06 +02:00
|
|
|
$html .= '<option value="true" '.($this->getValue('showCero')?'checked':'').'>'.$Language->get('Enabled').'</option>';
|
|
|
|
$html .= '<option value="false" '.($this->getValue('showCero')?'checked':'').'>'.$Language->get('Disabled').'</option>';
|
2017-06-18 22:44:07 +02:00
|
|
|
$html .= '</select>';
|
|
|
|
$html .= '<span class="tip">'.$Language->get('Show the home link on the sidebar').'</span>';
|
2015-08-01 18:28:47 +02:00
|
|
|
$html .= '</div>';
|
2017-05-27 19:46:46 +02:00
|
|
|
|
2016-11-08 22:56:41 +01:00
|
|
|
$html .= '<div>';
|
2017-06-18 22:44:07 +02:00
|
|
|
$html .= '<label>'.$Language->get('Amount of items').'</label>';
|
|
|
|
$html .= '<input id="jsamountOfItems" name="amountOfItems" type="text" value="'.$this->getValue('amountOfItems').'">';
|
2016-11-08 22:56:41 +01:00
|
|
|
$html .= '</div>';
|
2015-07-14 04:16:28 +02:00
|
|
|
|
|
|
|
return $html;
|
|
|
|
}
|
|
|
|
|
2017-05-27 19:46:46 +02:00
|
|
|
// Method called on the sidebar of the website
|
2015-08-07 04:13:55 +02:00
|
|
|
public function siteSidebar()
|
2015-07-07 06:24:51 +02:00
|
|
|
{
|
|
|
|
global $Language;
|
2017-05-27 19:46:46 +02:00
|
|
|
global $Url;
|
2017-05-31 20:17:21 +02:00
|
|
|
global $Site;
|
|
|
|
global $dbPages;
|
2017-07-10 23:40:46 +02:00
|
|
|
global $pagesByParent;
|
2015-09-08 02:51:48 +02:00
|
|
|
|
2017-05-29 23:56:07 +02:00
|
|
|
// Amount of pages to show
|
|
|
|
$amountOfItems = $this->getValue('amountOfItems');
|
|
|
|
|
2017-05-31 20:17:21 +02:00
|
|
|
// Page number the first one
|
|
|
|
$pageNumber = 1;
|
|
|
|
|
|
|
|
// Only published pages
|
|
|
|
$onlyPublished = true;
|
|
|
|
|
|
|
|
// Get the list of pages
|
|
|
|
$pages = $dbPages->getList($pageNumber, $amountOfItems, $onlyPublished, true);
|
2017-05-29 23:56:07 +02:00
|
|
|
|
2017-05-27 19:46:46 +02:00
|
|
|
// HTML for sidebar
|
|
|
|
$html = '<div class="plugin plugin-pages">';
|
|
|
|
$html .= '<h2 class="plugin-label">'.$this->getValue('label').'</h2>';
|
2015-07-07 06:24:51 +02:00
|
|
|
$html .= '<div class="plugin-content">';
|
2017-05-27 19:46:46 +02:00
|
|
|
$html .= '<ul>';
|
2015-07-07 06:24:51 +02:00
|
|
|
|
2017-07-10 23:40:46 +02:00
|
|
|
if(ORDER_BY==='position') {
|
2017-08-03 23:28:32 +02:00
|
|
|
foreach($pagesByParent[PARENT] as $Parent) {
|
2017-07-10 23:40:46 +02:00
|
|
|
$html .= '<li class="parent">';
|
|
|
|
$html .= '<h3>';
|
2017-08-03 23:28:32 +02:00
|
|
|
$html .= $Parent->title();
|
2017-07-10 23:40:46 +02:00
|
|
|
$html .= '</h3>';
|
|
|
|
|
2017-08-03 23:28:32 +02:00
|
|
|
if(!empty($pagesByParent[$Parent->key()])) {
|
2017-07-10 23:40:46 +02:00
|
|
|
$html .= '<ul class="child">';
|
2017-08-03 23:28:32 +02:00
|
|
|
foreach($pagesByParent[$Parent->key()] as $child) {
|
2017-07-10 23:40:46 +02:00
|
|
|
$html .= '<li class="child">';
|
|
|
|
$html .= '<a class="child" href="'.$child->permalink().'">';
|
|
|
|
$html .= $child->title();
|
|
|
|
$html .= '</a>';
|
|
|
|
$html .= '</li>';
|
|
|
|
}
|
|
|
|
$html .= '</ul>';
|
|
|
|
}
|
|
|
|
$html .= '</li>';
|
|
|
|
}
|
2017-05-29 23:56:07 +02:00
|
|
|
}
|
2017-07-10 23:40:46 +02:00
|
|
|
else {
|
|
|
|
// Show Home page link
|
|
|
|
if( $this->getValue('homeLink') ) {
|
|
|
|
$html .= '<li>';
|
|
|
|
$html .= '<a href="'.$Site->url().'">';
|
|
|
|
$html .= $Language->get('Home page');
|
|
|
|
$html .= '</a>';
|
|
|
|
$html .= '</li>';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get keys of pages
|
|
|
|
$keys = array_keys($pages);
|
|
|
|
foreach($keys as $pageKey) {
|
|
|
|
// Create the page object from the page key
|
|
|
|
$page = buildPage($pageKey);
|
|
|
|
$html .= '<li>';
|
|
|
|
$html .= '<a href="'.$page->permalink().'">';
|
|
|
|
$html .= $page->title();
|
|
|
|
$html .= '</a>';
|
|
|
|
$html .= '</li>';
|
|
|
|
}
|
2015-07-14 04:16:28 +02:00
|
|
|
}
|
|
|
|
|
2016-09-28 01:49:58 +02:00
|
|
|
$html .= '</ul>';
|
2015-07-07 06:24:51 +02:00
|
|
|
$html .= '</div>';
|
|
|
|
$html .= '</div>';
|
|
|
|
|
|
|
|
return $html;
|
|
|
|
}
|
2017-05-27 19:46:46 +02:00
|
|
|
}
|