PATH:
home
/
centosnipponia
/
public_html
/
sweetrich
/
wp-content
/
plugins
/
user-role-editor
/
includes
/
classes
<?php /* * admin_notices action support for User Role Editor plugin * * Author: Vladimir Garagulya * Author email: support@role-editor.com * Author URI: https://role-editor.com */ class URE_Admin_Notice { // Message class: update, success, warning private $message_class; private $message; function __construct( $message_class, $message ) { $this->message = $message; $this->message_class = $message_class; add_action('admin_notices', array($this, 'render') ); } // end of __construct() public function render() { printf('<div class="notice notice-%s is-dismissible"><p>%s</p></div>', $this->message_class, $this->message ); } // end of render() } // end of class URE_Admin_Notice
[+]
..
[-] admin-notice.php
[edit]
[-] advertisement.php
[edit]
[-] ajax-processor.php
[edit]
[-] assign-role.php
[edit]
[-] base-lib.php
[edit]
[-] bbpress.php
[edit]
[-] capabilities-groups-manager.php
[edit]
[-] capabilities.php
[edit]
[-] capability.php
[edit]
[-] editor.php
[edit]
[-] grant-roles.php
[edit]
[-] known-js-css-compatibility-issues.php
[edit]
[-] lib.php
[edit]
[-] own-capabilities.php
[edit]
[-] protect-admin.php
[edit]
[-] role-additional-options.php
[edit]
[-] role-view.php
[edit]
[-] screen-help.php
[edit]
[-] settings.php
[edit]
[-] task-queue.php
[edit]
[-] tools.php
[edit]
[-] uninstall.php
[edit]
[-] user-other-roles.php
[edit]
[-] user-role-editor.php
[edit]
[-] user-view.php
[edit]
[-] view.php
[edit]
[-] woocommerce-capabilities.php
[edit]
[-] .htaccess.disabled
[edit]