C_Admin_Notification_Wrapper
The WordPress Core C Admin Notification Wrapper class.
Defined (1)
The class is defined in the following location(s).
- /products/photocrati_nextgen/modules/nextgen_admin/package.module.nextgen_admin.php
- class C_Admin_Notification_Wrapper
- {
- public $_name;
- public $_data;
- function __construct($name, $data)
- {
- $this->_name = $name;
- $this->_data = $data;
- }
- function is_renderable()
- {
- return true;
- }
- function is_dismissable()
- {
- return true;
- }
- function render()
- {
- return $this->_data["message"];
- }
- }