Система уведомлений

Описание

Notification System plugin creates and maintains a notification system for users on WordPress site.

The plugin has the Options page in the site console, with relevant buttons and controls. Please see screenshots.

Админка

Notifications are custom posts of type notification. There is a standard custom post interface, with a menu in admin.

Администратор может создавать, редактировать и удалять уведомления. Одна таксономия доступна: Channel. Администратор может добавлять, редактировать и удалять термины таксономии. Чтобы ограничить уведомления некоторым пользователям, добавьте login пользователей в виде списка, разделённого запятыми.

Фронтенд

Plugin creates page /notifications «on the fly» — it does not exist in the database. Information on this page is visible only to the logged-in users (restricted by permissions in REST API Controller).

Plugin creates a popup window if url contains hash #notifications, like that: http://my.site.org/some-url#notifications. This is an easy way to show a popup window with notifications from anywhere. Just create a link like <a href="http://my.site.org#notifications">Notifications</a> and a click on this link will open a popup window with notifications.

Logged-in users can list notifications and filter them by a channel.

Show more button provides pagination of the notification list.

For those users who have the capability ‘edit_posts’, additional buttons are shown: Create, Update, and Delete. Popup windows provide relevant inputs. All notifications can be edited right from the frontend.

Администраторам сайта

Add a custom link to the menu, with #notifications url. Use any navigation label or space(s) for empty label. Save menu. On the site frontend, you will see a new menu item with icon and unread count. By clicking on this menu item, a popup window with notifications will be opened.

Разработчики

Create an element(s) with the class unread-notifications-count. The best place for such element(s) is somewhere in the header or menu. It(they) can be updated by plugin during custom JS event update_unread_counts. Example:

    const count = 5;
    document.dispatchEvent(
        new CustomEvent(
            'update_unread_counts',
            { 'detail': count }
        )
    );

Из кода php, счётчики могут быть обновлены для текущего пользователя с помощью действия ‘update_unread_counts’. Пример:

    do_action( 'update_unread_counts' );

Подготовлен к переводу

The plugin is prepared for translation. All strings are output via gettext functions. There is a .pot file in /language directory with strings collected.

Код

The PHP code conforms to PHP 7.0 level.
The JS code conforms to ES6 level.

Весь код проверен анализатором кода, и соответствует стандартам кодирования WordPress.

Скриншоты

  • Попап уведомлений /#notifications (фронтенд).
  • Попап Обновить Уведомление.

Установка

Минимальные требования

  • PHP version 7.0 or greater (PHP 7.4 or greater is recommended)
  • MySQL version 5.5 or greater (MySQL 8.0 or greater is recommended)

Автоматическая установка

Automatic installation is the easiest option as WordPress handles the file transfers itself, and you don’t need to leave your web browser. To do an automatic installation of Notification Systems plugin, log in to your WordPress dashboard, navigate to the Plugins menu and click Add New.

In the search field type “notification system” and click Search Plugins. Once you’ve found our plugin, you can view details about it such as the point release, rating and description. Most importantly, you can install it by simply clicking “Install Now”.

Ручная установка

Метод ручной установки включает в себя скачивание плагина и загрузку его на ваш сервер посредством FTP-приложения. Кодекс WordPress содержит инструкции о том, как это сделать здесь.

Обновление

Automatic updates should work like a charm; as always though, ensure you back up your site just in case.

Часто задаваемые вопросы

Где я могу получить поддержку или поговорить с другими пользователями?

Если у вас затруднения, вы можете попросить помощи на форуме KAGG Notifications Plugin.

Отзывы

Посмотреть все 4 отзыва

Участники и разработчики

«Система уведомлений» — проект с открытым исходным кодом. В развитие плагина внесли свой вклад следующие участники:

Участники

«Система уведомлений» переведён на 1 язык. Благодарим переводчиков за их работу.

Перевести «Система уведомлений» на ваш язык.

Заинтересованы в разработке?

Посмотрите код, проверьте SVN репозиторий, или подпишитесь на журнал разработки по RSS.

Журнал изменений

2.0.1

  • Fixed PHP deprecated message.

2.0.0

  • Dropped support for PHP 5.6. The minimum required PHP version is now 7.0.
  • The minimum WordPress version required is now 5.0.
  • Tested with WordPress 6.5.

1.3

  • Tested with WordPress 6.0.

1.2

  • Tested with WordPress 5.7.

1.1

  • Протестировано до WordPress 5.5
  • Fix bug with inability to filter notifications by channel.
  • Fix notice in admin if user does not exist anymore.

1.0.4

  • Tested with WordPress 5.4.

1.0.3

  • Tested with WordPress 5.3.

1.0.2

  • Php version bumped up to 5.6.
  • Tested with WordPress 5.2.

1.0.1

  • Code refactoring to conform to WordPress Coding Standards.

1.0.0

  • Первый релиз.