Carbon_Fields\Container\Theme_Options_Container::set_page_parent PHP Method

set_page_parent() public method

Change the parent theme options page of this container
public set_page_parent ( $parent )
    public function set_page_parent($parent)
    {
        if (is_a($parent, 'Carbon_Container')) {
            $parent = $parent->title;
        }
        $this->settings['parent'] = $parent;
        return $this;
    }