MetaModels\Helper\TableManipulation::isSystemColumn PHP Method

isSystemColumn() public static method

Checks whether the column with the given name is a MetaModel system column.
public static isSystemColumn ( string $strColName ) : boolean
$strColName string The name of the column.
return boolean true if the column is a system column, false otherwise.
    public static function isSystemColumn($strColName)
    {
        return in_array($strColName, $GLOBALS['METAMODELS_SYSTEM_COLUMNS']);
    }