Carbon_Fields\Container\Theme_Options_Container::is_active PHP Method

is_active() public method

Whether this container is currently viewed.
public is_active ( )
    public function is_active()
    {
        if (isset($_GET['page']) && $_GET['page'] === $this->settings['file']) {
            return true;
        }
        return false;
    }