/** * * * @package Kopa * @subpackage Core * @author thethangtran <*****@*****.**> * @since 1.0.0 * */ public function __construct($args = array()) { parent::__construct($args); $this->post_type = isset($args['post_type']) ? $args['post_type'] : FALSE; $this->taxonomy = isset($args['taxonomy']) ? $args['taxonomy'] : FALSE; $this->template_hierarchy = isset($args['template_hierarchy']) ? $args['template_hierarchy'] : FALSE; }
/** * * * @package Kopa * @subpackage Core * @author thethangtran <*****@*****.**> * @since 1.0.0 * */ public function __construct($args = array()) { parent::__construct($args); $this->options = isset($args['options']) ? $args['options'] : array(); }
/** * * * @package Kopa * @subpackage Core * @author thethangtran <*****@*****.**> * @since 1.0.0 * */ public function __construct($args = array()) { parent::__construct($args); $this->is_show_caption = isset($args['is_show_caption']) ? $args['is_show_caption'] : false; }
/** * * * @package Kopa * @subpackage Core * @author thethangtran <*****@*****.**> * @since 1.0.0 * */ public function __construct($args = array()) { parent::__construct($args); $this->html = isset($args['html']) ? $args['html'] : ''; }
/** * * * @package Kopa * @subpackage Core * @author thethangtran <*****@*****.**> * @since 1.0.0 * */ public function __construct($args = array()) { parent::__construct($args); $this->prefix = isset($args['prefix']) ? $args['prefix'] : ''; $this->suffix = isset($args['suffix']) ? $args['suffix'] : ''; }