當前位置: 首頁>>代碼示例>>PHP>>正文


PHP XMLElement::setAttributearray方法代碼示例

本文整理匯總了PHP中XMLElement::setAttributearray方法的典型用法代碼示例。如果您正苦於以下問題:PHP XMLElement::setAttributearray方法的具體用法?PHP XMLElement::setAttributearray怎麽用?PHP XMLElement::setAttributearray使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在XMLElement的用法示例。


在下文中一共展示了XMLElement::setAttributearray方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: appendLoginStatusToEventXML

 public function appendLoginStatusToEventXML(array $context = null)
 {
     $result = new XMLElement('member-login-info');
     if ($this->isLoggedIn()) {
         $result->setAttributearray(array('logged-in' => 'yes', 'id' => $this->getMemberID(), 'result' => 'success'));
     } else {
         $result->setAttribute('logged-in', 'no');
         // Append error messages
         if (is_array(extension_Members::$_errors) && !empty(extension_Members::$_errors)) {
             foreach (extension_Members::$_errors as $type => $error) {
                 $result->appendChild(new XMLElement($type, null, array('type' => $error['type'], 'message' => $error['message'], 'label' => General::sanitize($error['label']))));
             }
         }
         // Append post values to simulate a real Symphony event
         if (extension_Members::$_failed_login_attempt) {
             $result->setAttribute('result', 'error');
             $post_values = new XMLElement('post-values');
             $post = General::getPostData();
             // Create the post data cookie element
             if (is_array($post['fields']) && !empty($post['fields'])) {
                 General::array_to_xml($post_values, $post['fields'], true);
                 $result->appendChild($post_values);
             }
         }
     }
     $context['wrapper']->appendChild($result);
 }
開發者ID:brendo,項目名稱:members,代碼行數:27,代碼來源:class.members.php

示例2: appendEventXML

 public function appendEventXML(array $context = null)
 {
     $result = new XMLElement('github');
     $token = $this->__getAccessToken();
     if ($token) {
         $result->setAttributearray(array('logged-in' => 'yes', 'token' => $token));
     } else {
         $result->setAttribute('logged-in', 'no');
     }
     $context['wrapper']->appendChild($result);
 }
開發者ID:remie,項目名稱:GitHubOAuth,代碼行數:11,代碼來源:extension.driver.php


注:本文中的XMLElement::setAttributearray方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。