oops bis
parent
87f8c4bc75
commit
0e46e1cafa
|
@ -31,10 +31,15 @@ use Dotclear\Helper\Html\Html;
|
||||||
*/
|
*/
|
||||||
class ManageList extends adminGenericListV2
|
class ManageList extends adminGenericListV2
|
||||||
{
|
{
|
||||||
public function display(adminGenericFilterV2 $filter, string $enclose = '',): void
|
public function display(adminGenericFilterV2 $filter, string $enclose = ''): void
|
||||||
{
|
{
|
||||||
|
if (is_null(dcCore::app()->auth) || is_null(dcCore::app()->blog)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if ($this->rs->isEmpty()) {
|
if ($this->rs->isEmpty()) {
|
||||||
echo '<p><strong>' . ($filter->show() ?
|
echo '<p><strong>' . (
|
||||||
|
$filter->show() ?
|
||||||
__('No widgets matching the filter.') : __('No widget')
|
__('No widgets matching the filter.') : __('No widget')
|
||||||
) . '</strong></p>';
|
) . '</strong></p>';
|
||||||
|
|
||||||
|
@ -43,8 +48,7 @@ class ManageList extends adminGenericListV2
|
||||||
|
|
||||||
$pager = new dcPager((int) $filter->value('page'), (int) $this->rs_count, (int) $filter->value('nb'), 10);
|
$pager = new dcPager((int) $filter->value('page'), (int) $this->rs_count, (int) $filter->value('nb'), 10);
|
||||||
|
|
||||||
$content =
|
$content = '<div class="table-outer">' .
|
||||||
'<div class="table-outer">' .
|
|
||||||
'<table class="clear">' .
|
'<table class="clear">' .
|
||||||
'<caption>' . (
|
'<caption>' . (
|
||||||
$filter->show() ?
|
$filter->show() ?
|
||||||
|
@ -66,6 +70,8 @@ class ManageList extends adminGenericListV2
|
||||||
|
|
||||||
$content .= implode(iterator_to_array($cols)) . '</tr></thead><tbody>';
|
$content .= implode(iterator_to_array($cols)) . '</tr></thead><tbody>';
|
||||||
|
|
||||||
|
$tz = dcCore::app()->auth->getInfo('user_tz') ?? (dcCore::app()->blog->settings->get('system')->get('blog_timezone') ?? 'UTC');
|
||||||
|
|
||||||
while ($this->rs->fetch()) {
|
while ($this->rs->fetch()) {
|
||||||
$w_title = Html::escapeHTML($this->rs->option_title);
|
$w_title = Html::escapeHTML($this->rs->option_title);
|
||||||
if ($w_title == '') {
|
if ($w_title == '') {
|
||||||
|
@ -80,12 +86,12 @@ class ManageList extends adminGenericListV2
|
||||||
}
|
}
|
||||||
|
|
||||||
$cols = new ArrayObject([
|
$cols = new ArrayObject([
|
||||||
'check' => '<td class="nowrap">' . (new Checkbox(['widgets[]'], (bool) $this->rs->f('option_id')))->value($this->rs->f('periodical_id'))->disabled(!$this->rs->isEditable())->render() . '</td>',
|
'check' => '<td class="nowrap">' . (new Checkbox(['widgets[]'], (bool) $this->rs->f('option_id')))->value($this->rs->f('option_id'))->disabled(!$this->rs->isEditable())->render() . '</td>',
|
||||||
'name' => '<td class="maximal"><a href="' . dcCore::app()->getPostAdminURL($this->rs->f('post_type'), $this->rs->f('post_id')) . '#post-wtext-form">' .
|
'name' => '<td class="maximal"><a href="' . dcCore::app()->getPostAdminURL($this->rs->f('post_type'), $this->rs->f('post_id')) . '#post-wtext-form">' .
|
||||||
Html::escapeHTML($this->rs->f('post_title')) . '</a></td>',
|
Html::escapeHTML($this->rs->f('post_title')) . '</a></td>',
|
||||||
'post_dt' => '<td class="nowrap count">' . Date::dt2str(__('%Y-%m-%d %H:%M'), $this->rs->f('post_dt'), $tz ?? 'UTC') . '</td>',
|
'post_dt' => '<td class="nowrap count">' . Date::dt2str(__('%Y-%m-%d %H:%M'), $this->rs->f('post_dt'), $tz) . '</td>',
|
||||||
'option_title' => '<td class="nowrap">' . $w_title . '</td>',
|
'option_title' => '<td class="nowrap">' . $w_title . '</td>',
|
||||||
'option_creadt' => '<td class="nowrap count">' . Date::dt2str(__('%Y-%m-%d %H:%M'), $this->rs->f('option_upddt'), $tz ?? 'UTC') . '</td>',
|
'option_creadt' => '<td class="nowrap count">' . Date::dt2str(__('%Y-%m-%d %H:%M'), $this->rs->f('option_upddt'), $tz) . '</td>',
|
||||||
'user_id' => '<td class="nowrap">' . $this->rs->f('user_id') . '</td>',
|
'user_id' => '<td class="nowrap">' . $this->rs->f('user_id') . '</td>',
|
||||||
'post_type' => '<td class="nowrap">' . $this->rs->f('post_type') . '</td>',
|
'post_type' => '<td class="nowrap">' . $this->rs->f('post_type') . '</td>',
|
||||||
|
|
||||||
|
@ -93,11 +99,9 @@ class ManageList extends adminGenericListV2
|
||||||
|
|
||||||
$this->userColumns(My::id(), $cols);
|
$this->userColumns(My::id(), $cols);
|
||||||
|
|
||||||
$content .=
|
$content .= '<tr class="line' . ($this->rs->f('post_status') == 1 ? '' : ' offline') . '" id="p' . $this->rs->f('post_id') . '">' .
|
||||||
'<tr class="line' . ($this->rs->f('post_status') == 1 ? '' : ' offline') . '" id="p' . $this->rs->f('post_id') . '">' .
|
|
||||||
implode(iterator_to_array($cols)) .
|
implode(iterator_to_array($cols)) .
|
||||||
'</tr>';
|
'</tr>';
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$content .= '</tbody></table></div>';
|
$content .= '</tbody></table></div>';
|
||||||
|
|
Loading…
Reference in New Issue