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


PHP forum::seperate方法代码示例

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


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

示例1: Copyright

  *************************************************
  Copyright (c) 2010 foulu (Le Hoai Phuong), eenemeenemuu
  *************************************************
  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 3 of the License, or
  (at your option) any later version.
  ********************************************
  $HeadURL$
  $Revision$
  $LastChangedBy$
  $Date$
  **************************************************/
if ($authorizer->is_user()) {
    echo table::open(0);
    echo table::tds(array(array('align' => 'left', 'text' => forum::seperate(array(html::anchor('forum.php?c=search&m=new_topics', Lang::item('home.new_topcis')), html::anchor('forum.php?c=search&m=active_topics', Lang::item('home.active_topcis')), html::anchor('forum.php?c=search&m=pending_topics', Lang::item('home.pending_topcis'))))), array('align' => 'right', 'text' => sprintf(Lang::item('home.user_q_stats'), $user_posts, $last_visit))));
    echo table::close();
}
foreach ($categories as $k => $category) {
    echo table::open();
    echo table::td(html::category_anchor($category['id'], $category['name']), 5);
    echo table::tds(array(array('class' => 'tableh2', 'width' => '0%', 'align' => 'center', 'text' => ' '), array('class' => 'tableh2', 'width' => '60%', 'text' => html::bold(Lang::item('home.forum_name'))), array('class' => 'tableh2', 'width' => '5%', ' align' => 'center', 'text' => html::bold(Lang::item('home.topics'))), array('class' => 'tableh2', 'width' => '5%', ' align' => 'center', 'text' => html::bold(Lang::item('home.replies'))), array('class' => 'tableh2', 'width' => '30%', 'text' => html::bold(Lang::item('home.l_post_info')))));
    foreach ($category['boards'] as $board) {
        echo table::tds(array(array('class' => 'tableb', 'align' => 'center', 'text' => html::img($board['icon'])), array('class' => 'tableb', 'valign' => 'top', 'text' => html::board_anchor($board['id'], $board['name']) . '<br />' . ($board['description'] ? html::span($board['description']) : '')), array('class' => 'tableb', 'align' => 'center', 'text' => $board['topics']), array('class' => 'tableb', 'align' => 'center', 'text' => $board['replies']), array('class' => 'tableb', 'text' => $board['last_post_title'] ? html::span(sprintf(Lang::item('home.last_post_title'), html::message_anchor($board['last_post_id'], $board['last_post_title']), time::decode($board['last_post_time']), html::profile_anchor($board['last_post_author_id'], $board['last_post_author_name']))) : '')));
        if ($board['childs']) {
            echo table::td(html::span(html::bold(Lang::item('home.child_boards')) . forum::child_board_list($board['childs'])), 5, 'tablef');
        }
    }
    if (count($category['boards']) == 0) {
        echo table::td(Lang::item('home.no_board'), 5, 'tableb');
    }
开发者ID:phill104,项目名称:branches,代码行数:31,代码来源:index_view.php


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