Elementor\Element_Base::add_control PHP Метод

add_control() публичный Метод

public add_control ( $id, $args )
    public function add_control($id, $args)
    {
        if (empty($args['type']) || !in_array($args['type'], [Controls_Manager::SECTION, Controls_Manager::WP_WIDGET])) {
            if (null !== $this->_current_section) {
                if (!empty($args['section']) || !empty($args['tab'])) {
                    _doing_it_wrong(__CLASS__ . '::' . __FUNCTION__, 'Cannot redeclare control with `tab` or `section` args inside section. - ' . $id, '1.0.0');
                }
                $args = array_merge($args, $this->_current_section);
                if (null !== $this->_current_tab) {
                    $args = array_merge($args, $this->_current_tab);
                }
            } elseif (empty($args['section'])) {
                wp_die(__CLASS__ . '::' . __FUNCTION__ . ': Cannot add a control outside a section (use `start_controls_section`).');
            }
        }
        return Plugin::instance()->controls_manager->add_control_to_stack($this, $id, $args);
    }