Elgg\Database\MetadataTable::isMetadataIndependent PHP Метод

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

Determines whether entities of a given type and subtype should not change their metadata in line with their parent entity
public isMetadataIndependent ( string $type, string $subtype ) : boolean
$type string The type - object, user, etc
$subtype string The entity subtype
Результат boolean
    function isMetadataIndependent($type, $subtype)
    {
        if (empty($this->independents[$type])) {
            return false;
        }
        return !empty($this->independents[$type][$subtype]) || !empty($this->independents[$type]['*']);
    }