예제 #1
0
 /**
  * Returns the supplied node object, after setting its alias to the value supplied
  *
  * @param QQNode $objNode The node object to set alias on
  * @param string $strAlias The alias to set
  * @return mixed The same node that was passed in, but with the alias set
  *
  */
 public static function Alias(QQNode $objNode, $strAlias)
 {
     $objNode->SetAlias($strAlias);
     return $objNode;
 }