Papi_Entry_Type::tab PHP Method

tab() protected method

Add a new tab.
protected tab ( mixed $file_or_options = [], array $properties = [] ) : null | Papi_Core_Tab
$file_or_options mixed
$properties array
return null | Papi_Core_Tab
    protected function tab($file_or_options = [], $properties = [])
    {
        if (!is_string($file_or_options) && !is_array($file_or_options)) {
            return;
        }
        return papi_tab($file_or_options, $properties);
    }