WPDKHTMLTagSelect::draw PHP Method

draw() public method

Override parent method for draw the options with selectd values.
public draw ( )
    public function draw()
    {
        $options = array();
        if (is_callable($this->_options)) {
            $options = call_user_func($this->_options, $this);
        } elseif (is_array($this->_options)) {
            $options = $this->_options;
        }
        $this->content = $this->options($options);
        parent::draw();
    }