当前位置: 首页>>代码示例>>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;未经允许,请勿转载。