Notifications::ap_user_pages()
Description #
Adds reputations tab in AnsPress authors page.
Source #
File: addons/notifications/notifications.php
public function ap_user_pages() { anspress()->user_pages[] = array( 'slug' => 'notifications', 'label' => __( 'Notifications', 'anspress-question-answer' ), 'count' => ap_count_unseen_notifications(), 'icon' => 'apicon-globe', 'cb' => array( $this, 'notification_page' ), 'private' => true, ); }
Expand full source code Collapse full source code View on GitHub: addons/notifications/notifications.php:221
Add your comment