cosmetics

This commit is contained in:
Jean-Christian Paul Denis 2021-10-28 22:55:43 +02:00
parent 33c2855e3b
commit b0e2547f1d
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951
3 changed files with 15 additions and 8 deletions

View File

@ -2,8 +2,10 @@
- [ ] fix disallow self blog feeds
- [ ] add plugin muppet support (request Mathieu M.)
- [ ] add log for errors
- [ ] add generic filters
- [ ] add user pref for columns and filters options
- add generic filters
- add user pref for columns and filters options
- fix redirections, page title, posts feed form
- update translation
2021.09.16
- fix Dotclear 2.19 compatibility

View File

@ -61,11 +61,11 @@ class zcfsAdminBehaviors
public static function feedsSortbyCombo()
{
return [
__('Date') => 'feed_upddt',
__('Name') => 'lowername',
__('Frequency') => 'feed_upd_int',
__('Date of update') => 'feed_upd_last',
__('Status') => 'feed_status'
__('Date') => 'feed_upddt',
__('Name') => 'lowername',
__('Frequency') => 'feed_upd_int',
__('Update date') => 'feed_upd_last',
__('Status') => 'feed_status'
];
}

View File

@ -12,7 +12,6 @@
*/
if (!defined('DC_CONTEXT_ADMIN')) {
return null;
}
@ -268,6 +267,12 @@ class zcfsEntriesList extends adminGenericList
}
}
/**
* @ingroup DC_PLUGIN_ZONECLEARFEEDSERVER
* @brief Feeds server - Posts list filters methods
* @since 2.20
* @see adminGenericFilter for more info
*/
class adminZcfsPostFilter extends adminGenericFilter
{
public function __construct(dcCore $core)