コード例 #1
0
ファイル: ProfileGetFBML.php プロジェクト: jkinner/ringside
 /**
  * Gets the fbml for the user
  *
  * @return Array
  */
 public function execute()
 {
     $this->checkDefaultApp($this->m_aid);
     $retVal = array();
     $fbml = Api_Bo_App::getFBML($this->m_uid, $this->m_aid);
     if ($fbml == "") {
         $retVal['result'] = "";
     } else {
         $retVal['result'] = "<![CDATA[" . $fbml . "]]>";
     }
     return $retVal;
 }