当前位置: 首页>>代码示例>>PHP>>正文


PHP categories::ajax_selector方法代码示例

本文整理汇总了PHP中categories::ajax_selector方法的典型用法代码示例。如果您正苦于以下问题:PHP categories::ajax_selector方法的具体用法?PHP categories::ajax_selector怎么用?PHP categories::ajax_selector使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在categories的用法示例。


在下文中一共展示了categories::ajax_selector方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: add

 /**
  * Добавление контента
  * @param string $cat имя категории
  * @param int $id ID контента
  * @return null
  * @throws EngineException 
  */
 public function add($cat, $id = null)
 {
     lang::o()->get('content');
     $id = (int) $id;
     if ($id) {
         $lj = $cols = "";
         if ($this->tstate) {
             $cols = ", t.*";
             $lj = " LEFT JOIN content_torrents AS t ON t.cid=c.id";
         }
         $row = db::o()->p($id)->query('SELECT c.* ' . $cols . ' FROM content AS c ' . $lj . ' WHERE c.id=? LIMIT 1');
         $row = db::o()->fetch_assoc($row);
         if ($row) {
             if ($this->tstate && $row["banned"] == 2) {
                 throw new EngineException("content_torrent_cant_be_edited");
             }
             $this->title .= ' "' . $row["title"] . '"';
             $adder = $row['poster_id'];
             $cat = $row['category_id'];
             if (users::o()->v('id') == $adder) {
                 users::o()->check_perms('edit_content');
             } else {
                 users::o()->check_perms('edit_content', '2');
             }
             if ($this->tstate) {
                 $row["screenshots"] = unserialize($row["screenshots"]);
             }
             tpl::o()->assign('nrow', $row);
             tpl::o()->assign('id', $id);
         } else {
             throw new EngineException('content_not_exists');
         }
     }
     if ($this->tstate && !$row['screenshots']) {
         $row['screenshots'] = array(array(), array());
         tpl::o()->assign('nrow', $row);
     }
     try {
         plugins::o()->pass_data(array('row' => &$row), true)->run_hook('content_add');
     } catch (PReturn $e) {
         return $e->r();
     }
     tpl::o()->assign('categories_selector', $this->cats->ajax_selector($cat));
     tpl::o()->assign("num", 0);
     n('polls');
     // для add_polls
     n('attachments');
     // для add_attachments
     tpl::o()->display('content/add.tpl');
 }
开发者ID:SjayLiFe,项目名称:CTRev,代码行数:57,代码来源:content.php


注:本文中的categories::ajax_selector方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。