Merge pull request #766 from anaggh/master
Add optional content stats feature to simple-stats plugin
This commit is contained in:
commit
750f14396d
|
@ -6,5 +6,8 @@
|
||||||
},
|
},
|
||||||
"visits": "Visits",
|
"visits": "Visits",
|
||||||
"visits-today": "Visits today",
|
"visits-today": "Visits today",
|
||||||
"unique-visitors-today": "Unique visitors today"
|
"unique-visitors-today": "Unique visitors today",
|
||||||
}
|
"statistics": "Statistics",
|
||||||
|
"chart": "Chart",
|
||||||
|
"table": "Table"
|
||||||
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
This plugin use the javascript library https://github.com/gionkunz/chartist-js
|
This plugin uses the javascript library https://github.com/gionkunz/chartist-js
|
||||||
*/
|
*/
|
||||||
class pluginSimpleStats extends Plugin {
|
class pluginSimpleStats extends Plugin {
|
||||||
|
|
||||||
|
@ -16,7 +16,8 @@ class pluginSimpleStats extends Plugin {
|
||||||
$this->dbFields = array(
|
$this->dbFields = array(
|
||||||
'label'=>$L->g('Visits'),
|
'label'=>$L->g('Visits'),
|
||||||
'numberOfDays'=>7,
|
'numberOfDays'=>7,
|
||||||
'excludeAdmins'=>false
|
'excludeAdmins'=>false,
|
||||||
|
'showContentStats'=>false
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -34,6 +35,14 @@ class pluginSimpleStats extends Plugin {
|
||||||
$html .= '<span class="tip">'.$L->get('This title is almost always used in the sidebar of the site').'</span>';
|
$html .= '<span class="tip">'.$L->get('This title is almost always used in the sidebar of the site').'</span>';
|
||||||
$html .= '</div>';
|
$html .= '</div>';
|
||||||
|
|
||||||
|
$html .= '<div>';
|
||||||
|
$html .= '<label>'.$L->get('Show Content Stats').'</label>';
|
||||||
|
$html .= '<select name="showContentStats">';
|
||||||
|
$html .= '<option value="true" '.($this->getValue('showContentStats')===true?'selected':'').'>'.$L->get('Enabled').'</option>';
|
||||||
|
$html .= '<option value="false" '.($this->getValue('showContentStats')===false?'selected':'').'>'.$L->get('Disabled').'</option>';
|
||||||
|
$html .= '</select>';
|
||||||
|
$html .= '</div>';
|
||||||
|
|
||||||
if (defined('BLUDIT_PRO')) {
|
if (defined('BLUDIT_PRO')) {
|
||||||
$html .= '<div>';
|
$html .= '<div>';
|
||||||
$html .= '<label>'.$L->get('Exclude administrators users').'</label>';
|
$html .= '<label>'.$L->get('Exclude administrators users').'</label>';
|
||||||
|
@ -73,18 +82,15 @@ class pluginSimpleStats extends Plugin {
|
||||||
|
|
||||||
$html = <<<EOF
|
$html = <<<EOF
|
||||||
<div class="simple-stats-plugin">
|
<div class="simple-stats-plugin">
|
||||||
<div class="container mt-5 pt-5 border-top">
|
<div class="my-5 pt-4 border-top">
|
||||||
<h4 class="pb-3">{$L->get('Visits')}</h4>
|
<h4 class="pb-3">{$L->get('Visits')}</h4>
|
||||||
<div class="row">
|
<div class="ct-chart ct-perfect-fourth"></div>
|
||||||
<div class="col">
|
<p class="legends visits-today">{$L->g('Visits today')}: $visitsToday</p>
|
||||||
<div class="ct-chart ct-perfect-fourth"></div>
|
<p class="legends unique-today">{$L->g('Unique visitors today')}: $uniqueVisitors</p>
|
||||||
<p class="legends visits-today">{$L->g('Visits today')}: $visitsToday</p>
|
|
||||||
<p class="legends unique-today">{$L->g('Unique visitors today')}: $uniqueVisitors</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
EOF;
|
EOF;
|
||||||
|
|
||||||
$numberOfDays = $this->getValue('numberOfDays');
|
$numberOfDays = $this->getValue('numberOfDays');
|
||||||
$numberOfDays = $numberOfDays - 1;
|
$numberOfDays = $numberOfDays - 1;
|
||||||
for ($i=$numberOfDays; $i >= 0 ; $i--) {
|
for ($i=$numberOfDays; $i >= 0 ; $i--) {
|
||||||
|
@ -119,6 +125,26 @@ EOF;
|
||||||
|
|
||||||
$this->deleteOldLogs();
|
$this->deleteOldLogs();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Optional Content Stats Feature
|
||||||
|
*/
|
||||||
|
if ($this->getValue('showContentStats')) {
|
||||||
|
|
||||||
|
global $pages, $categories, $tags;
|
||||||
|
|
||||||
|
$data['title'] = $L->get('Statistics');
|
||||||
|
$data['tabTitleChart'] = $L->get('Chart');
|
||||||
|
$data['tabTitleTable'] = $L->get('Table');
|
||||||
|
$data['data'][$L->get('published')] = count($pages->getPublishedDB());
|
||||||
|
$data['data'][$L->get('static')] = count($pages->getStaticDB());
|
||||||
|
$data['data'][$L->get('drafts')] = count($pages->getDraftDB());
|
||||||
|
$data['data'][$L->get('scheduled')] = count($pages->getScheduledDB());
|
||||||
|
$data['data'][$L->get('sticky')] = count($pages->getStickyDB());
|
||||||
|
$data['data'][$L->get('categories')]= count($categories->keys());
|
||||||
|
$data['data'][$L->get('tags')] = count($tags->keys());
|
||||||
|
$html .= $this->renderContentStatistics($data);
|
||||||
|
}
|
||||||
|
|
||||||
return $html.PHP_EOL.$script.PHP_EOL;
|
return $html.PHP_EOL.$script.PHP_EOL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -192,4 +218,52 @@ EOF;
|
||||||
return file_put_contents($logFile, $line.PHP_EOL, FILE_APPEND | LOCK_EX)!==false;
|
return file_put_contents($logFile, $line.PHP_EOL, FILE_APPEND | LOCK_EX)!==false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function renderContentStatistics($data)
|
||||||
|
{
|
||||||
|
$html = '<div class="my-5 pt-4 border-top">';
|
||||||
|
$html .= "<h4 class='pb-2'>{$data['title']}</h4>";
|
||||||
|
$html .= '
|
||||||
|
<nav>
|
||||||
|
<div class="nav nav-tabs" id="nav-tab" role="tablist">
|
||||||
|
<a class="nav-item nav-link active" id="nav-stats-chart-tab" data-toggle="tab" href="#nav-stats-chart" role="tab" aria-controls="nav-stats-chart" aria-selected="true">' . $data['tabTitleChart'] .'</a>
|
||||||
|
<a class="nav-item nav-link" id="nav-stats-table-tab" data-toggle="tab" href="#nav-stats-table" role="tab" aria-controls="nav-stats-table" aria-selected="false">' . $data['tabTitleTable'] .'</a>
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
<div class="tab-content my-2" id="nav-tabContent">
|
||||||
|
<div class="tab-pane fade show active" id="nav-stats-chart" role="tabpanel" aria-labelledby="nav-stats-chart-tab">
|
||||||
|
<div class="ct-chart-content pt-2"></div>
|
||||||
|
</div>
|
||||||
|
<div class="tab-pane fade" id="nav-stats-table" role="tabpanel" aria-labelledby="nav-stats-table-tab">
|
||||||
|
<table class="table table-borderless table-sm table-striped mt-3">
|
||||||
|
<tbody>';
|
||||||
|
|
||||||
|
foreach ($data['data'] as $th => $td) {
|
||||||
|
$html .= "
|
||||||
|
<tr>
|
||||||
|
<th>$th</th>
|
||||||
|
<td>$td</td>
|
||||||
|
</tr>
|
||||||
|
";
|
||||||
|
}
|
||||||
|
|
||||||
|
$html .= '
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
new Chartist.Bar(".ct-chart-content", {
|
||||||
|
labels: ' . json_encode(array_keys($data['data'])) . ',
|
||||||
|
series: ' . json_encode(array_values($data['data'])) . '
|
||||||
|
}, {
|
||||||
|
distributeSeries: true
|
||||||
|
});
|
||||||
|
</script>';
|
||||||
|
|
||||||
|
return $html;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue