Backend\Core\Engine\Model::getKeys PHP Method

getKeys() public static method

Get the page-keys
public static getKeys ( string $language = null ) : array
$language string The language to use, if not provided we will use the working language.
return array
    public static function getKeys($language = null)
    {
        $language = $language !== null ? (string) $language : BackendLanguage::getWorkingLanguage();
        $cacheBuilder = BackendPagesModel::getCacheBuilder();
        return $cacheBuilder->getKeys($language);
    }