• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP XoopsTpl类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: gnavi_footer

function gnavi_footer()
{
    global $mod_copyright, $mydirname;
    $tpl = new XoopsTpl();
    $tpl->assign(array('mod_copyright' => $mod_copyright));
    $tpl->display("db:{$mydirname}_footer.html");
}
开发者ID:nouphet,项目名称:rata,代码行数:7,代码来源:draw_functions.php


示例2: callbackSetupUser

 /**
  * Checks whether the site is closed now, and whether all of must modules
  * have been installed. This function is called through delegates.
  * @var XoopsUser &$xoopsUser
  * @see preBlockFilter()
  */
 function callbackSetupUser(&$principal, &$controller, &$context)
 {
     $accessAllowFlag = false;
     $xoopsConfig = $controller->mRoot->mContext->getXoopsConfig();
     if (!empty($_POST['xoops_login'])) {
         $controller->checkLogin();
         return;
     } else {
         if (@$_GET['op'] == 'logout') {
             // GIJ
             $controller->logout();
             return;
         } elseif (is_object($context->mXoopsUser)) {
             foreach ($context->mXoopsUser->getGroups() as $group) {
                 if (in_array($group, $xoopsConfig['closesite_okgrp']) || XOOPS_GROUP_ADMIN == $group) {
                     $accessAllowFlag = true;
                     break;
                 }
             }
         }
     }
     if (!$accessAllowFlag) {
         require_once XOOPS_ROOT_PATH . '/class/template.php';
         $xoopsTpl = new XoopsTpl();
         $xoopsTpl->assign(array('xoops_sitename' => htmlspecialchars($xoopsConfig['sitename']), 'xoops_isuser' => is_object($context->mXoopsUser), 'xoops_themecss' => xoops_getcss(), 'xoops_imageurl' => XOOPS_THEME_URL . '/' . $xoopsConfig['theme_set'] . '/', 'lang_login' => _LOGIN, 'lang_username' => _USERNAME, 'lang_password' => _PASSWORD, 'lang_siteclosemsg' => $xoopsConfig['closesite_text']));
         $xoopsTpl->compile_check = true;
         // @todo filebase template with absolute file path
         $xoopsTpl->display(XOOPS_ROOT_PATH . '/modules/legacy/templates/legacy_site_closed.html');
         exit;
     }
 }
开发者ID:hiro1173,项目名称:legacy,代码行数:37,代码来源:SiteClose.class.php


示例3: b_d3downloads_list_edit

	function b_d3downloads_list_edit( $options )
	{
		require_once dirname( dirname(__FILE__) ).'/include/common_functions.php' ;

		$mydirname = empty( $options[0] ) ? 'd3downloads' : $options[0] ;
		$categories = trim( @$options[1] ) === '' ? array() : array_map( 'intval' , explode( ',' , $options[1] ) ) ;
		$selected_order = empty( $options[2] ) || ! in_array( $options[2] , d3download_list_order() ) ? 'd.date DESC' : $options[2] ;
		$max_entry = empty( $options[3] ) ? 10 : intval( $options[3] )  ;
		$date_format = empty( $options[4] ) ? 'Y/m/d' :  htmlspecialchars ( $options[4] , ENT_QUOTES ) ;
		$show_body = empty( $options[5] ) ? false : true ;
		$this_template = empty( $options[6] ) ? 'db:'.$mydirname.'_block_list.html' : trim( $options[6] ) ;
		$intree = empty( $options[7] ) ? 0 : 1 ;

		if( preg_match( '/[^0-9a-zA-Z_-]/' , $mydirname ) ) die( 'Invalid mydirname' ) ;

		// getcategories_list
		$categories_list = array() ;
		$categories_list = d3download_get_categories_list( $mydirname ) ;

		require_once XOOPS_ROOT_PATH.'/class/template.php' ;
		$tpl = new XoopsTpl() ;
		$tpl->assign( array(
			'mydirname' => $mydirname ,
			'categories' => implode( ',' , $categories ) ,
			'order_options' => d3download_list_order() ,
			'selected_order' => $selected_order ,
			'max_entry' => $max_entry ,
			'date_format' => $date_format ,
			'show_body' => $show_body ,
			'intree' => $intree ,
			'categories_list' => $categories_list ,
			'this_template' => $this_template ,
		) ) ;
		return $tpl->fetch( 'db:'.$mydirname.'_blockedit_list.html' ) ;
	}
开发者ID:nunoluciano,项目名称:uxcl,代码行数:35,代码来源:list_functions.php


示例4: b_pico_content_edit

function b_pico_content_edit($options)
{
    // options
    $mytrustdirname = basename(dirname(dirname(__FILE__)));
    $mydirname = empty($options[0]) ? $mytrustdirname : $options[0];
    $content_id = intval(@$options[1]);
    $this_template = empty($options[2]) ? 'db:' . $mydirname . '_block_content.html' : trim($options[2]);
    $process_body = empty($options[3]) ? false : true;
    // mydirname check
    if (preg_match('/[^0-9a-zA-Z_-]/', $mydirname)) {
        die('Invalid mydirname');
    }
    // get content_title
    $db =& Database::getInstance();
    $myts =& MyTextSanitizer::getInstance();
    $contents = array(0 => '--');
    $result = $db->query("SELECT content_id,subject,c.cat_depth_in_tree FROM " . $db->prefix($mydirname . "_contents") . " o LEFT JOIN " . $db->prefix($mydirname . "_categories") . " c ON o.cat_id=c.cat_id ORDER BY c.cat_order_in_tree,o.weight");
    while (list($id, $sbj, $depth) = $db->fetchRow($result)) {
        $contents[$id] = sprintf('%06d', $id) . ': ' . str_repeat('--', $depth) . $myts->makeTboxData4Show($sbj, 1, 1);
    }
    require_once XOOPS_ROOT_PATH . '/class/template.php';
    $tpl = new XoopsTpl();
    $tpl->assign(array('mydirname' => $mydirname, 'contents' => $contents, 'content_id' => $content_id, 'this_template' => $this_template, 'process_body' => $process_body));
    return $tpl->fetch('db:' . $mydirname . '_blockedit_content.html');
}
开发者ID:nouphet,项目名称:rata,代码行数:25,代码来源:content.php


示例5: myalbum_footer

function myalbum_footer()
{
    global $mod_copyright, $mydirnumber;
    $tpl = new XoopsTpl();
    $tpl->assign(array('mod_copyright' => $mod_copyright));
    $tpl->display("db:myalbum{$mydirnumber}_footer.html");
}
开发者ID:BackupTheBerlios,项目名称:peakxoops-svn,代码行数:7,代码来源:draw_functions.php


示例6: b_gnavi_menu_show

function b_gnavi_menu_show($options)
{
    global $xoopsDB;
    $mydirname = empty($options[0]) ? basename(dirname(dirname(__FILE__))) : $options[0];
    $cat_limit = empty($options[1]) ? 0 : 1;
    $this_template = 'db:' . $mydirname . '_block_menu.html';
    if (preg_match('/[^0-9a-zA-Z_-]/', $mydirname)) {
        die('Invalid mydirname');
    }
    require dirname(dirname(__FILE__)) . '/include/read_configs.php';
    $myts =& MyTextSanitizer::getInstance();
    $result = $xoopsDB->query("SELECT c1.cid ,c1.title,c1.imgurl ,c2.cid AS ccid, c2.title AS ctitle, c2.imgurl AS cimgurl FROM {$table_cat} c1 LEFT JOIN {$table_cat} c2 ON c1.cid=c2.pid WHERE c1.pid=0 ORDER BY c1.weight,c2.weight ");
    if (preg_match('/' . '\\/modules\\/' . $mydirname . '/', htmlspecialchars(getenv('REQUEST_URI')))) {
        $gcid = empty($_GET['cid']) ? 0 : intval($_GET['cid']);
        $glid = empty($_GET['lid']) ? 0 : intval($_GET['lid']);
        $ocid = $gcid;
        if ($gcid) {
            if (!($result2 = $xoopsDB->query("SELECT pid FROM {$table_cat} WHERE cid={$gcid}"))) {
                echo $xoopsDB->logger->dumpQueries();
                exit;
            }
            list($gpid) = $xoopsDB->fetchRow($result2);
            $gcid = $gpid > 0 ? $gpid : $gcid;
        }
    } else {
        $gcid = 0;
        $glid = 0;
        $ocid = 0;
    }
    $blk = array();
    while ($content_row = $xoopsDB->fetchArray($result)) {
        $cat_id = intval($content_row['cid']);
        $blk[$cat_id]['cid'] = intval($content_row['cid']);
        $blk[$cat_id]['title'] = $myts->makeTboxData4Show($content_row['title']);
        $blk[$cat_id]['imgurl'] = $content_row['imgurl'];
        $blk[$cat_id]['active'] = intval($content_row['cid']) == $ocid && $glid == 0 ? 1 : 0;
        if ((!$cat_limit || $gcid == $cat_id) && intval($content_row['ccid']) > 0) {
            $blk[$cat_id]['contents'][] = array('cid' => intval($content_row['ccid']), 'title' => $myts->makeTboxData4Show($content_row['ctitle']), 'imgurl' => $content_row['cimgurl'], 'active' => intval($content_row['ccid']) == $ocid && $glid == 0 ? 1 : 0);
        }
    }
    $block = array();
    $block['categories'] = $blk;
    if (preg_match('/page=map/', htmlspecialchars(getenv('REQUEST_URI')))) {
        $block['mod_url'] = XOOPS_URL . '/modules/' . $mydirname . "/index.php?page=map&";
    } elseif (preg_match('/page=category/', htmlspecialchars(getenv('REQUEST_URI')))) {
        $block['mod_url'] = XOOPS_URL . '/modules/' . $mydirname . "/index.php?page=category&";
    } else {
        $block['mod_url'] = XOOPS_URL . '/modules/' . $mydirname . "/index.php?";
    }
    if (empty($options['disable_renderer'])) {
        require_once XOOPS_ROOT_PATH . '/class/template.php';
        $tpl = new XoopsTpl();
        $tpl->assign('block', $block);
        $ret['content'] = $tpl->fetch($this_template);
        return $ret;
    } else {
        return $block;
    }
}
开发者ID:nouphet,项目名称:rata,代码行数:59,代码来源:menu.php


示例7: b_d3dside_entry_show

function b_d3dside_entry_show($options)
{
    $mydirname = empty($options[0]) ? 'd3diary' : $options[0];
    $max_entry = empty($options[1]) ? 10 : (int) $options[1];
    $now_order = empty($options[2]) ? 'time' : trim($options[2]);
    $this_template = empty($options[3]) ? 'db:' . $mydirname . '_block_side_entry.html' : trim($options[3]);
    $limit_self = empty($options[4]) ? 0 : (int) $options[4];
    $show_category = empty($options[5]) ? false : true;
    if (!get_magic_quotes_gpc()) {
        $params['categories'] = empty($options[6]) ? array() : explode(',', addslashes($options[6]));
        $params['tags'] = empty($options[7]) ? array() : explode(',', addslashes($options[7]));
    } else {
        $params['categories'] = empty($options[6]) ? array() : explode(',', $options[6]);
        $params['tags'] = empty($options[7]) ? array() : explode(',', $options[7]);
    }
    if (preg_match('/[^0-9a-zA-Z_-]/', $mydirname)) {
        die('Invalid mydirname');
    }
    require_once dirname(dirname(__FILE__)) . '/class/d3diaryConf.class.php';
    $d3dConf = D3diaryConf::getInstance($mydirname, 0, "b_side_entry");
    $func =& $d3dConf->func;
    $mod_config =& $d3dConf->mod_config;
    $uid = $d3dConf->uid;
    $req_uid = $d3dConf->req_uid;
    // overrided by d3dConf
    if ($limit_self == 1) {
        // always show diarylist page
        $req_uid = 0;
    } elseif ($limit_self == 2 && $req_uid > 0) {
        // not show for personal page
        return;
    } elseif ($limit_self == 3 && $req_uid == 0) {
        // not show except for personal page
        return;
    }
    $entry = $func->get_blist($req_uid, $uid, $max_entry, true, $params);
    $lang = array();
    $constpref = "_MB_" . strtoupper($mydirname);
    $lang['more'] = constant($constpref . '_MORE');
    $block = "";
    $block['yd_list'] = $entry;
    $block['yd_uid'] = $req_uid;
    $block['show_category'] = $show_category;
    $block['categories'] = implode(',', $params['categories']);
    $block['tags'] = implode(',', $params['tags']);
    $block['lang'] = $lang;
    $block['mydirname'] = $mydirname;
    $block['mod_config'] = $mod_config;
    $d3dConf->debug_appendtime('b_side_entry');
    if (empty($options['disable_renderer'])) {
        require_once XOOPS_ROOT_PATH . '/class/template.php';
        $tpl = new XoopsTpl();
        $tpl->assign('block', $block);
        $ret['content'] = $tpl->fetch($this_template);
        return $ret;
    } else {
        return $block;
    }
}
开发者ID:naao,项目名称:d3diary,代码行数:59,代码来源:b_side_entry.php


示例8: b_oledrion_promotion_show_duplicatable

/**
 * Bloc à la volée
 */
function b_oledrion_promotion_show_duplicatable($options)
{
    $options = explode('|', $options);
    $block = b_oledrion_promotion_show($options);
    $tpl = new XoopsTpl();
    $tpl->assign('block', $block);
    $tpl->display('db:oledrion_block_promotion.tpl');
}
开发者ID:osw17,项目名称:oledrion,代码行数:11,代码来源:oledrion_promotion.php


示例9: render

 function render($target = null)
 {
     require_once XOOPS_ROOT_PATH . '/class/template.php';
     $tpl = new XoopsTpl();
     $tpl->assign($this->getAssign());
     $tpl->assign('xoops_module_header', pico_main_render_moduleheader($this->mydirname, $GLOBALS['xoopsModuleConfig'], $this->getHtmlHeader()));
     $tpl->display($this->getTemplateName());
 }
开发者ID:nouphet,项目名称:rata,代码行数:8,代码来源:PicoControllerAbstract.class.php


示例10: b_myshop_promotion_show_duplicatable

function b_myshop_promotion_show_duplicatable($options)
{
    $options = explode('|', $options);
    $block =& b_myshop_promotion_show($options);
    $tpl = new XoopsTpl();
    $tpl->assign('block', $block);
    $tpl->display('db:myshop_block_promotion.html');
}
开发者ID:naao,项目名称:myshop,代码行数:8,代码来源:myshop_promotion.php


示例11: b_oledrion_category_lists_duplicatable

/**
 * Bloc à la volée
 */
function b_oledrion_category_lists_duplicatable($options)
{
    $options = explode('|', $options);
    $block =& b_oledrion_category_lists_show($options);
    $tpl = new XoopsTpl();
    $tpl->assign('block', $block);
    $tpl->display('oledrion_block_category_lists.html');
}
开发者ID:severnaya99,项目名称:Sg-2010,代码行数:11,代码来源:oledrion_categoy_lists.php


示例12: b_myshop_category_duplicatable

/**
 * Random block
 */
function b_myshop_category_duplicatable($options)
{
    $options = explode('|', $options);
    $block =& b_myshop_category($options);
    $tpl = new XoopsTpl();
    $tpl->assign('block', $block);
    $tpl->display('db:myshop_block_categories.html');
}
开发者ID:naao,项目名称:myshop,代码行数:11,代码来源:myshop_categories.php


示例13: b_marquee_custom

function b_marquee_custom($options)
{
    $options = explode('|', $options);
    $block =& b_marquee_show($options);
    $tpl = new XoopsTpl();
    $tpl->assign('block', $block);
    $tpl->display('db:marquee_block.html');
}
开发者ID:BackupTheBerlios,项目名称:haxoo-svn,代码行数:8,代码来源:marquee_bloc.php


示例14: b_oledrion_mostviewed_lists_duplicatable

/**
 * Bloc à la volée
 */
function b_oledrion_mostviewed_lists_duplicatable($options)
{
    $options = explode('|', $options);
    $block = b_oledrion_mostviewed_lists_show($options);
    $tpl = new XoopsTpl();
    $tpl->assign('block', $block);
    $tpl->display('oledrion_block_mostviewed_lists.tpl');
}
开发者ID:osw17,项目名称:oledrion,代码行数:11,代码来源:oledrion_mostviewed_lists.php


示例15: b_news_topics_onthefly

function b_news_topics_onthefly($options)
{
    $options = explode('|', $options);
    $block =& b_news_topics_show($options);
    $tpl = new XoopsTpl();
    $tpl->assign('block', $block);
    $tpl->display('db:news_block_topics.html');
}
开发者ID:BackupTheBerlios,项目名称:haxoo-svn,代码行数:8,代码来源:news_topics.php


示例16: getPingBodies

 function getPingBodies()
 {
     $tpl = new XoopsTpl();
     $tpl->assign(array('site_name' => d3pipes_common_convert_encoding_ietoutf8($this->mydirname, $GLOBALS['xoopsConfig']['sitename']), 'site_url' => XOOPS_URL . '/', 'page_url' => XOOPS_URL . '/modules/' . $this->mydirname . '/index.php?page=eachpipe&pipe_id=' . $this->pipe_id, 'rss_url' => XOOPS_URL . '/modules/' . $this->mydirname . '/index.php?page=xml&style=rss20&pipe_id=' . $this->pipe_id));
     $ping_body = $tpl->fetch('db:' . $this->mydirname . '_main_xmlrpc2ping.html');
     $extended_ping_body = $tpl->fetch('db:' . $this->mydirname . '_main_xmlrpc2extendedping.html');
     return array($ping_body, $extended_ping_body);
 }
开发者ID:nouphet,项目名称:rata,代码行数:8,代码来源:D3pipesPingXmlrpc2.class.php


示例17: b_oledrion_recentlysold_duplicatable

/**
 * Bloc à la volée
 * @param string $options
 * @return string
 */
function b_oledrion_recentlysold_duplicatable($options)
{
    $options = explode('|', $options);
    $block = b_oledrion_bestsales_show($options);
    $tpl = new XoopsTpl();
    $tpl->assign('block', $block);
    $tpl->display('db:oledrion_block_recentlysold.tpl');
}
开发者ID:osw17,项目名称:oledrion,代码行数:13,代码来源:oledrion_recentlysold.php


示例18: b_oledrion_random_show_duplicatable

/**
 * Bloc à la volée
 */
function b_oledrion_random_show_duplicatable($options)
{
    $options = explode('|', $options);
    $block =& b_oledrion_random_show($options);
    $tpl = new XoopsTpl();
    $tpl->assign('block', $block);
    $tpl->display('db:oledrion_block_random.html');
}
开发者ID:severnaya99,项目名称:Sg-2010,代码行数:11,代码来源:oledrion_random.php


示例19: nw_b_news_bigstory_onthefly

function nw_b_news_bigstory_onthefly($options)
{
	$options = explode('|',$options);
	$block = & nw_b_news_bigstory_show($options);

	$tpl = new XoopsTpl();
	$tpl->assign('block', $block);
	$tpl->display('db:nw_news_block_bigstory.html');
}
开发者ID:severnaya99,项目名称:Sg-2010,代码行数:9,代码来源:news_bigstory.php


示例20: nw_b_news_topics_moderate_onthefly

function nw_b_news_topics_moderate_onthefly($options)
{
	$options = explode('|',$options);
	$block = & nw_b_news_topics_moderate($options);

	$tpl = new XoopsTpl();
	$tpl->assign('block', $block);
	$tpl->display('db:nw_news_block_moderate.html');
}
开发者ID:severnaya99,项目名称:Sg-2010,代码行数:9,代码来源:news_moderate.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP XoopsTree类代码示例发布时间:2022-05-23
下一篇:
PHP XoopsThemeForm类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap