Model::_use_short_table_name PHP 메소드

_use_short_table_name() 보호된 정적인 메소드

$class_property overrides $global_option, unless $class_property is null
protected static _use_short_table_name ( string $class_name ) : boolean
$class_name string
리턴 boolean
    protected static function _use_short_table_name($class_name)
    {
        $global_option = self::$short_table_names;
        $class_property = self::_get_static_property($class_name, '_table_use_short_name');
        return is_null($class_property) ? $global_option : $class_property;
    }