本文整理汇总了PHP中jTpl::fetch方法的典型用法代码示例。如果您正苦于以下问题:PHP jTpl::fetch方法的具体用法?PHP jTpl::fetch怎么用?PHP jTpl::fetch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jTpl
的用法示例。
在下文中一共展示了jTpl::fetch方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: output
/**
* generate the xml content and send it to the browser
* @return boolean true if ok
*/
public final function output()
{
$this->_httpHeaders['Content-Type'] = 'text/xml;charset=' . $this->_charset;
if (is_string($this->content)) {
// utilisation chaine de caractères xml
$xml_string = $this->content;
} else {
if (!empty($this->contentTpl)) {
// utilisation d'un template
$xml_string = $this->content->fetch($this->contentTpl);
} else {
throw new jException('jelix~errors.repxml.no.content');
}
}
if ($this->checkValidity) {
if (!simplexml_load_string($xml_string)) {
// xml mal-formed
throw new jException('jelix~errors.repxml.invalid.content');
}
}
$this->sendHttpHeaders();
if ($this->sendXMLHeader) {
echo '<?xml version="1.0" encoding="' . $this->_charset . '"?>', "\n";
$this->outputXmlHeader();
}
echo $xml_string;
return true;
}
示例2: index
/**
*
*/
function index()
{
$rep = $this->getResponse('html');
$tpl = new jTpl();
$gid = array(0);
$o = new StdClass();
$o->id_aclgrp = '0';
$o->name = jLocale::get('jacl2_admin~acl2.anonymous.group.name');
$o->grouptype = 0;
$groups = array($o);
$grouprights = array(0 => false);
foreach (jAcl2DbUserGroup::getGroupList() as $grp) {
$gid[] = $grp->id_aclgrp;
$groups[] = $grp;
$grouprights[$grp->id_aclgrp] = false;
}
$rights = array();
$p = jAcl2Db::getProfil();
$rs = jDao::get('jelix~jacl2subject', $p)->findAllSubject();
foreach ($rs as $rec) {
$rights[$rec->id_aclsbj] = $grouprights;
}
$rs = jDao::get('jelix~jacl2rights', $p)->getRightsByGroups($gid);
foreach ($rs as $rec) {
$rights[$rec->id_aclsbj][$rec->id_aclgrp] = true;
}
$tpl->assign(compact('groups', 'rights'));
if (jAcl2::check('acl.group.modify')) {
$rep->body->assign('MAIN', $tpl->fetch('groups_right'));
} else {
$rep->body->assign('MAIN', $tpl->fetch('groups_right_view'));
}
return $rep;
}
示例3: output
/**
* send the Html part
* @return boolean true if it's ok
*/
public final function output()
{
global $gJConfig;
$this->doAfterActions();
$content = implode("\n", $this->_contentTop);
if ($this->tplname != '') {
$content .= $this->tpl->fetch($this->tplname, 'html');
}
$content .= implode("\n", $this->_contentBottom);
$this->_httpHeaders['Content-Type'] = 'text/plain;charset=' . $gJConfig->charset;
$this->_httpHeaders['Content-length'] = strlen($content);
$this->sendHttpHeaders();
echo $content;
return true;
}
示例4: index
/**
*
*/
function index()
{
$rep = $this->getResponse('html');
$tpl = new jTpl();
$rep->body->assign('MAIN', $tpl->fetch('startpage'));
return $rep;
}
示例5: index
function index()
{
$id = $this->param('j_user_login');
if ($id === null) {
$rep = $this->getResponse('redirect');
$rep->action = 'master_admin~default:index';
return $rep;
}
if ($this->personalView && $id != jAuth::getUserSession()->login) {
jMessage::add(jLocale::get('jelix~errors.acl.action.right.needed'), 'error');
$rep = $this->getResponse('redirect');
$rep->action = 'master_admin~default:index';
return $rep;
}
$rep = $this->getResponse('html');
$tpl = new jTpl();
$tpl->assign('id', $id);
$tpl->assign('randomPwd', jAuth::getRandomPassword());
$tpl->assign('personalview', $this->personalView);
if ($this->personalView) {
$tpl->assign('viewaction', 'user:index');
} else {
$tpl->assign('viewaction', 'default:view');
}
$rep->body->assign('MAIN', $tpl->fetch('password_change'));
return $rep;
}
示例6: login
function login()
{
$rep = $this->getResponse('html');
$tpl = new jTpl();
$rep->body->assign('MAIN', $tpl->fetch('login'));
return $rep;
}
示例7: phpinfo
/**
* call to phpinfo
*/
public function phpinfo()
{
$rep = $this->getResponse('html');
$tpl = new jTpl();
$rep->body->assign('MAIN', $tpl->fetch('servinfo~phpinfo'));
return $rep;
}
示例8: index
/**
* Main page
*/
public function index()
{
$submit = $this->param('validate');
if ($submit == jLocale::get('hfnucontact~contact.form.saveBt')) {
$form = jForms::fill('hfnucontact~admincontact');
$rep = $this->getResponse('redirect');
if (!$form->check()) {
$rep->action = 'hfnucontact~admin:index';
return $rep;
}
$HfnucontactConfig = new jIniFileModifier(jApp::configPath('defaultconfig.ini.php'));
$HfnucontactConfig->setValue('email_contact', $this->param('contact'), 'hfnucontact');
$HfnucontactConfig->save();
jMessage::add(jLocale::get('hfnucontact~contact.admin.form.email.saved'), 'ok');
jForms::destroy('hfnucontact~admincontact');
$rep->action = 'hfnucontact~admin:index';
return $rep;
} else {
$form = jForms::create('hfnucontact~admincontact');
}
$form->setData('contact', jApp::config()->hfnucontact['email_contact']);
$rep = $this->getResponse('html');
$tpl = new jTpl();
$tpl->assign('form', $form);
$rep->body->assign('MAIN', $tpl->fetch('hfnucontact~admincontact'));
$rep->body->assign('selectedMenuItem', 'contact');
return $rep;
}
示例9: confirm
function confirm()
{
$tpl = new jTpl();
$rep = $this->getResponse('html');
$rep->body->assign('MAIN', $tpl->fetch('confirm'));
return $rep;
}
示例10: read_rss
/**
* display the RSS of the forum
*/
public function read_rss()
{
$ftitle = jUrl::escape($this->param('ftitle'), true);
$id_forum = (int) $this->param('id_forum');
if (!jAcl2::check('hfnu.posts.list', 'forum' . $id_forum)) {
$rep = $this->getResponse('redirect');
$rep->action = 'default:index';
return $rep;
}
if ($id_forum == 0) {
$rep = $this->getResponse('redirect');
$rep->action = 'default:index';
return $rep;
}
$forum = jClasses::getService('havefnubb~hfnuforum')->getForum($id_forum);
if (jUrl::escape($forum->forum_name, true) != $ftitle) {
$rep = $this->getResponse('redirect');
$rep->action = jApp::config()->urlengine['notfoundAct'];
return $rep;
}
jApp::coord()->getPlugin('history')->change('label', htmlentities($forum->forum_name, ENT_COMPAT, 'UTF-8'));
$feed_reader = new jFeedReader();
$feed_reader->setCacheDir(jApp::varPath('feeds'));
$feed_reader->setTimeout(2);
$feed_reader->setUserAgent('HaveFnuBB - http://www.havefnubb.org/');
$feed = $feed_reader->parse($forum->forum_url);
$rep = $this->getResponse('html');
$tpl = new jTpl();
$tpl->assign('feed', $feed);
$tpl->assign('forum', $forum);
$rep->title = $forum->forum_name;
$rep->body->assign('MAIN', $tpl->fetch('havefnubb~forum_rss.view'));
return $rep;
}
示例11: unread
public function unread()
{
$rep = $this->getResponse('html');
$tpl = new jTpl();
$tpl->assign('posts', jClasses::getService('havefnubb~hfnuposts')->findUnreadThreadByMod());
$rep->body->assign('MAIN', $tpl->fetch('posts.list'));
return $rep;
}
示例12: notavailable
protected function notavailable()
{
$rep = $this->_getjCommunityResponse();
$rep->setHttpStatus(404, "Not found");
$tpl = new \jTpl();
$rep->body->assign('MAIN', $tpl->fetch('not_available'));
return $rep;
}
示例13: badright
/**
* 403 error page
*/
public function badright()
{
$rep = $this->getResponse('html');
$tpl = new jTpl();
$rep->body->assign('MAIN', $tpl->fetch('havefnubb~403.html'));
$rep->setHttpStatus('403', 'Forbidden');
return $rep;
}
示例14: index
function index()
{
$tpl = new jTpl();
$rep = $this->getResponse('html');
$rep->body->assign('MAIN', $tpl->fetch('cache_index'));
$rep->body->assign('selectedMenuItem', 'cache');
return $rep;
}
示例15: createform
function createform()
{
$rep = $this->getResponse('html');
//$sujet=$this->param('sujet');
//$text=$this->param('texte');
$tpl = new jTpl();
$rep->body->assign('MAIN', $tpl->fetch('newsform'));
return $rep;
}