PHPFusion\Rewrite\RewriteDriver::getUniqueIDtag PHP Метод

getUniqueIDtag() защищенный Метод

Example: For news, unique ID should be news_id So it will return %news_id% because of array("%%news_id" => "news_id")
protected getUniqueIDtag ( string $type )
$type string Type or Handler name
    protected function getUniqueIDtag($type)
    {
        $tag = "";
        if (isset($this->dbid[$type]) && is_array($this->dbid[$type])) {
            $res = array_keys($this->dbid[$type]);
            $tag = $res[0];
        }
        return (string) $tag;
    }