Bravo3\Orm\KeySchemes\StandardKeyScheme::getTableSortKey PHP Method

getTableSortKey() public method

Get the key for a sort index on a table
public getTableSortKey ( string $table_name, string $sort_field ) : string
$table_name string Name of table containing sorted entity list
$sort_field string Sortable field on the table
return string
    public function getTableSortKey($table_name, $sort_field)
    {
        // srt:category:title
        return static::SORT_NAMESPACE . $this->delimiter . $table_name . $this->delimiter . $sort_field;
    }