QQReverseReferenceNode::GetExpandArrayAlias PHP Метод

GetExpandArrayAlias() публичный Метод

public GetExpandArrayAlias ( )
    public function GetExpandArrayAlias()
    {
        //			$objNode = $this;
        //			$objChildTableNode = $this->_ChildTableNode;
        //			$strToReturn = $objChildTableNode->_Name . '__' . $objChildTableNode->_PrimaryKey;
        $strToReturn = $this->strName . '__' . $this->_PrimaryKey;
        $objNode = $this->_ParentNode;
        while ($objNode) {
            $strToReturn = $objNode->_Name . '__' . $strToReturn;
            $objNode = $objNode->_ParentNode;
        }
        return $strToReturn;
    }