AlkantarClanX12
Current Path : /home/dilseshaadi/www/wp-content/themes/wedding-planner/framework/classes/control/field/ |
Current File : /home/dilseshaadi/www/wp-content/themes/wedding-planner/framework/classes/control/field/notebox.php |
<?php class VP_Control_Field_NoteBox extends VP_Control_Field { /** * Status of message, can be one of these: * - normal * - info * - warning * - error * - success * @var String */ protected $_status; public function __construct() { parent::__construct(); } public static function withArray($arr = array(), $class_name = null) { if(is_null($class_name)) $instance = new self(); else $instance = new $class_name; $instance->_basic_make($arr); return $instance; } protected function _basic_make($arr) { parent::_basic_make($arr); $this->set_status(isset($arr['status']) ? $arr['status'] : 'normal'); } protected function _setup_data() { switch ($this->get_status()) { case 'normal': $this->add_container_extra_classes('note-normal'); break; case 'info': $this->add_container_extra_classes('note-info'); break; case 'warning': $this->add_container_extra_classes('note-warning'); break; case 'error': $this->add_container_extra_classes('note-error'); break; case 'success': $this->add_container_extra_classes('note-success'); break; default: $this->add_container_extra_classes('note-normal'); break; } $this->add_data('status', $this->get_status()); parent::_setup_data(); } public function render($is_compact = false) { // Setup Data $this->_setup_data(); $this->add_data('is_compact', $is_compact); return VP_View::instance()->load('control/notebox', $this->get_data()); } /** * Get the status of message * * @return String Status of message */ public function get_status() { return $this->_status; } /** * Set the status of message * * @param String $_status Status of message */ public function set_status($_status) { $this->_status = $_status; return $this; } } /** * EOF */