' . __( 'Direct script access denied.', 'articled') . '' ); } /* * Class for Creating WP Notice * * copyright 2019 Abu Sufiyan * */ if( ! class_exists( 'articledNotice' ) ) { class articledNotice extends articled { private $id = ''; private $text = ''; final public function __construct( $text = '', $is_dismisable = true, $id = '' ) { if( empty( $id ) ) { $this->id = str_replace( ['-', ' '], '', substr( $text, 0, 20 ) ); } else { $this->id = $id; } $this->text = articled_allowed_html_kses( $text ); add_action( 'admin_notices', array( $this, 'admin_notices' ) ); add_action( 'admin_init', array( $this, 'admin_init' )); } public static function create( $text = '', $is_dismisable = true, $id = '' ) { return new self( $text, $is_dismisable, $id ); } final public function admin_notices() { $ampersent = empty( $_SERVER["QUERY_STRING"] ) ? '?' : '&'; if ( get_theme_mod( $this->id ) == false ) { ?>
text ); ?>
id ; ?>=1">
id ] ) ) { set_theme_mod( $this->id, 1 ); } } } }