Granada\Granada::_get_table_name PHP Method

_get_table_name() protected static method

If the supplied class has a public static property named $_table, the value of this property will be returned. If not, the class name will be converted using the _class_name_to_table_name method method.
protected static _get_table_name ( string $class_name )
$class_name string
    protected static function _get_table_name($class_name)
    {
        $specified_table_name = self::_get_static_property($class_name, '_table');
        if (is_null($specified_table_name)) {
            return self::_class_name_to_table_name($class_name);
        }
        return $specified_table_name;
    }