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


PHP api::result方法代碼示例

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


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

示例1: login_action

 public function login_action()
 {
     if ($_SERVER['REQUEST_METHOD'] == 'POST') {
         if (empty($_POST['email']) || empty($_POST['password']) || !account::log_in($_POST['email'], $_POST['password'])) {
             return api::result(false);
         }
         return api::result(true);
     }
     return api::result(false);
 }
開發者ID:TorbenKoehn,項目名稱:lok,代碼行數:10,代碼來源:account.php

示例2: formatted_action

 public function formatted_action($key)
 {
     if (empty($key)) {
         return api::result(false, array('message' => 'No_key_provided'));
     }
     $kb = knowledge_base_article::load_one($key, 'key');
     if (!$kb) {
         return api::result(false, array('message' => 'Article_not_found'));
     }
     return api::result(true, array('formatted' => addslashes($kb->formatted())));
 }
開發者ID:TorbenKoehn,項目名稱:lok,代碼行數:11,代碼來源:kb.php

示例3: inventory_action

 public function inventory_action($type)
 {
     $type = page::arg('type', $type, 'character');
     $charId = page::arg('character_id');
     $charName = page::arg('name');
     $itemType = page::arg('item_type', null, 'all');
     $char = null;
     if ($charId) {
         $char = character::load_one($charId);
     } else {
         if ($charName) {
             $char = character::load_one($charName, 'name');
         } else {
             if (!character::selected()) {
                 return api::result(false, array('message' => 'No_character_selected'));
             } else {
                 $char = character::current();
             }
         }
     }
     if (!$type) {
         $type = 'character';
     }
     $types = array('character' => inventory::TYPE_CHARACTER, 'vault' => inventory::TYPE_VAULT);
     $itemTypes = array('all' => null, 'usable' => item::TYPE_USABLE, 'enchantable' => item::TYPE_ENCHANTABLE, 'destroyable' => item::TYPE_DESTROYABLE, 'loot' => item::TYPE_LOOT, 'equippable' => item::TYPE_EQUIPPABLE, 'material' => item::TYPE_MATERIAL);
     if (!isset($types[$type])) {
         $itemType = (int) $type;
     }
     if (!array_key_exists($itemType, $itemTypes)) {
         return api::result(false, array('message' => 'Invalid_item_type'));
     }
     return api::result(true, array($char->inventory($types[$type])->items($itemTypes[$itemType], true)));
 }
開發者ID:TorbenKoehn,項目名稱:lok,代碼行數:33,代碼來源:character.php

示例4: result

 public function result($type, $args = array(), $status = true)
 {
     return api::result($status, array($status ? 'type' : 'message' => $type, 'args' => $args));
 }
開發者ID:TorbenKoehn,項目名稱:lok,代碼行數:4,代碼來源:script.php


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