
This should also fix an occasional fatal-error when all tasks on a page are done. We remove here also the $class from the button in the usertools, since it served no apparent purpose. SPR-936
57 lines
1.6 KiB
PHP
Executable file
57 lines
1.6 KiB
PHP
Executable file
<?php
|
|
if(!defined('DOKU_INC')) die();
|
|
|
|
/** @var \helper_plugin_do $doPlugin */
|
|
$doPlugin = plugin_load('helper', 'do');
|
|
/** @var \helper_plugin_qc $qcPlugin */
|
|
$qcPlugin = plugin_load('helper', 'qc');
|
|
|
|
|
|
if($doPlugin !== null || $qcPlugin !== null) {
|
|
echo '<ul class="page-attributes">';
|
|
}
|
|
|
|
|
|
if($qcPlugin && $qcPlugin->shouldShow()) {
|
|
echo '<li class="plugin_qc"><a href="#">…</a></li>'; // filled by javascript
|
|
}
|
|
|
|
|
|
if($doPlugin !== null) {
|
|
$count = $doPlugin->getPageTaskCount();
|
|
$num = $count['count'];
|
|
$title = "";
|
|
|
|
if($num == 0) { // no tasks - does not exist do in plug-in
|
|
$class = "do_none";
|
|
$title = tpl_getLang('tasks_page_none');
|
|
} elseif($count['undone'] == 0) { // all tasks done
|
|
$class = 'do_done';
|
|
$title = $doPlugin->getLang('title_alldone');
|
|
} elseif($count['late'] == 0) { // open tasks but none late
|
|
$class = 'do_undone';
|
|
$title = sprintf(tpl_getLang('tasks_page_intime'), $count['undone']);
|
|
} else { // late tasks
|
|
$class = 'do_late';
|
|
$title = sprintf(tpl_getLang('tasks_page_late'), $count['undone'], $count['late']);
|
|
}
|
|
$markup = "<li class=\"plugin__do_pagetasks $class\" title=\"$title\"><strong><span class=\"prefix\">" . tpl_getLang('prefix_tasks_page') . " </span><span class=\"num\">$num</span></strong></li>";
|
|
|
|
echo $markup;
|
|
}
|
|
|
|
if($doPlugin !== null || $qcPlugin !== null) {
|
|
echo "</ul>";
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
$out = '<div class="plugin__do_pagetasks" title="' . $title . '"><span class="' . $class . '">';
|
|
$out .= $count['undone'];
|
|
$out .= '</span></div>';
|
|
|
|
if($return) return $out;
|
|
echo $out;*/
|