' . __( 'Direct script access denied.', 'articled') . '' ); } if( ! class_exists( 'articled' ) ) { class articled { public function __construct( ) { } /* * @parem: * $test - Text to display in notice * $is_dismisable - Dismisable notice. * $id - the ID of notice * */ public function createNotice( $text = '', $is_dismisable = true, $id = '' ) { $called_class = 'articledNotice'; return $called_class::create( $text = '', $is_dismisable, $id = '' ); } } }