Elgg\Cache\PluginSettingsCache::getAll PHP Метод

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

Get all the non-user, non-internal settings for a plugin
public getAll ( integer $entity_guid ) : null | string[]
$entity_guid integer The GUID of the entity
Результат null | string[] null if settings are not loaded for this entity
    public function getAll($entity_guid)
    {
        return isset($this->values[$entity_guid]) ? $this->values[$entity_guid] : null;
    }