mirror of
https://github.com/e107inc/e107.git
synced 2025-06-02 17:04:58 +02:00
243 lines
7.0 KiB
PHP
243 lines
7.0 KiB
PHP
<?php
|
|
/*
|
|
* e107 website system
|
|
*
|
|
* Copyright (C) 2008-2013 e107 Inc (e107.org)
|
|
* Released under the terms and conditions of the
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
*
|
|
*/
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
|
|
$PAGE_WRAPPER = array();
|
|
$PAGE_TEMPLATE = array();
|
|
|
|
global $sc_style;
|
|
|
|
$sc_style['CPAGEAUTHOR|default']['pre'] = '';
|
|
$sc_style['CPAGEAUTHOR|default']['post'] = ", ";
|
|
|
|
$sc_style['CPAGESUBTITLE|default']['pre'] = '<h2>';
|
|
$sc_style['CPAGESUBTITLE|default']['post'] = '</h2>';
|
|
|
|
$sc_style['CPAGEMESSAGE|default']['pre'] = '';
|
|
$sc_style['CPAGEMESSAGE|default']['post'] = '<div class="clear"><!-- --></div>';
|
|
|
|
$sc_style['CPAGENAV|default']['pre'] = '<div class="f-right pull-right col-md-3">';
|
|
$sc_style['CPAGENAV|default']['post'] = '</div>';
|
|
|
|
#### default template - BC ####
|
|
// used only for parsing comment outside of the page tablerender-ed content
|
|
// leave empty if you integrate page comments inside the main page template
|
|
|
|
|
|
$PAGE_TEMPLATE['default']['page'] = '
|
|
{PAGE}
|
|
{PAGECOMMENTS}
|
|
';
|
|
|
|
// always used - it's inside the {PAGE} sc from 'page' template
|
|
$PAGE_TEMPLATE['default']['start'] = '<div id="{CPAGESEF}" class="cpage_body cpage-body">{CHAPTER_BREADCRUMB}';
|
|
|
|
// page body
|
|
$PAGE_TEMPLATE['default']['body'] = '
|
|
|
|
{CPAGEMESSAGE|default}
|
|
|
|
{CPAGESUBTITLE|default}
|
|
<div class="clear"><!-- --></div>
|
|
|
|
{CPAGENAV|default}
|
|
{CPAGEBODY|default}
|
|
|
|
<div class="clear"><!-- --></div>
|
|
{CPAGERATING|default}
|
|
{CPAGEEDIT}
|
|
|
|
|
|
';
|
|
|
|
// {CPAGEFIELD: name=image}
|
|
|
|
$PAGE_WRAPPER['default']['CPAGEEDIT'] = "<div class='text-right'>{---}</div>";
|
|
|
|
// used only when password authorization is required
|
|
$PAGE_TEMPLATE['default']['authorize'] = '
|
|
<div class="cpage-restrict ">
|
|
{message}
|
|
{form_open}
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">{caption}</div>
|
|
<div class="panel-body">
|
|
<div class="form-group">
|
|
<label class="col-sm-3 control-label">{label}</label>
|
|
<div class="col-sm-9">
|
|
{password} {submit}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{form_close}
|
|
</div>
|
|
';
|
|
|
|
// used when access is denied (restriction by class)
|
|
$PAGE_TEMPLATE['default']['restricted'] = '
|
|
{text}
|
|
';
|
|
|
|
// used when page is not found
|
|
$PAGE_TEMPLATE['default']['notfound'] = '
|
|
{text}
|
|
';
|
|
|
|
// always used
|
|
$PAGE_TEMPLATE['default']['end'] = '{CPAGERELATED: types=page,news}</div>';
|
|
|
|
// options per template - disable table render
|
|
// $PAGE_TEMPLATE['default']['noTableRender'] = false; //XXX Deprecated
|
|
|
|
// define different tablerender mode here
|
|
$PAGE_TEMPLATE['default']['tableRender'] = 'cpage';
|
|
|
|
|
|
|
|
$PAGE_TEMPLATE['default']['related']['start'] = '{SETIMAGE: w=350&h=350&crop=1}<h2 class="caption">{LAN=LAN_RELATED}</h2><div class="row">';
|
|
$PAGE_TEMPLATE['default']['related']['item'] = '<div class="col-md-4"><a href="{RELATED_URL}">{RELATED_IMAGE}</a><h3><a href="{RELATED_URL}">{RELATED_TITLE}</a></h3></div>';
|
|
$PAGE_TEMPLATE['default']['related']['end'] = '</div>';
|
|
|
|
// $PAGE_TEMPLATE['default']['editor'] = '<ul class="fa-ul"><li><i class="fa fa-li fa-edit"></i> Level 1</li><li><i class="fa fa-li fa-cog"></i> Level 2</li></ul>';
|
|
|
|
|
|
#### No table render example template ####
|
|
|
|
|
|
$PAGE_TEMPLATE['custom']['start'] = '<div id="{CPAGESEF}" class="cpage-body">';
|
|
$PAGE_TEMPLATE['custom']['body'] = '';
|
|
$PAGE_TEMPLATE['custom']['authorize'] = '
|
|
';
|
|
|
|
$PAGE_TEMPLATE['custom']['restricted'] = '
|
|
';
|
|
|
|
$PAGE_TEMPLATE['custom']['end'] = '</div>';
|
|
$PAGE_TEMPLATE['custom']['tableRender'] = '';
|
|
|
|
|
|
$PAGE_WRAPPER['profile']['CMENUIMAGE: template=profile'] = '<span class="page-profile-image pull-left col-xs-12 col-sm-4 col-md-4">{---}</span>';
|
|
$PAGE_TEMPLATE['profile'] = $PAGE_TEMPLATE['default'];
|
|
$PAGE_TEMPLATE['profile']['body'] = '
|
|
{CPAGEMESSAGE}
|
|
{CPAGESUBTITLE}
|
|
<div class="clear"><!-- --></div>
|
|
|
|
{CPAGENAV|default}
|
|
{SETIMAGE: w=320}
|
|
{CMENUIMAGE: template=profile}
|
|
{CPAGEBODY}
|
|
|
|
<div class="clear"><!-- --></div>
|
|
{CPAGERATING}
|
|
{CPAGEEDIT}
|
|
';
|
|
|
|
|
|
|
|
|
|
$PAGE_TEMPLATE['customfields'] = $PAGE_TEMPLATE['default'];
|
|
|
|
// Wrap Custom Fields in a table row (hides table row if data is empty)
|
|
$PAGE_WRAPPER['customfields']['CPAGEFIELDTITLE'] = "<tr id='customfields-{CPAGEFIELDNAME}'><td>{---}</td>";
|
|
$PAGE_WRAPPER['customfields']['CPAGEFIELD'] = "<td>{---}</td></tr>";
|
|
|
|
// Override the wrapper above for {CPAGEFIELD: name=myvideo}
|
|
$PAGE_WRAPPER['customfields']['CPAGEFIELD: name=myvideo'] = "<tr><td colspan='2'>{---}</td></tr>";
|
|
|
|
// Make image clickable for the display of a larger image in a modal window.
|
|
$PAGE_WRAPPER['customfields']['CPAGEFIELD: name=myimage'] = "<td><a class='e-modal' data-modal-caption='{CPAGEFIELDTITLE: name=myimage}' target='_blank' href='{CPAGEFIELD: name=myimage&mode=raw&w=800}'>{---}</a></td></tr>";
|
|
|
|
//Custom description for URL link.
|
|
$PAGE_WRAPPER['customfields']['CPAGEFIELD: name=myurl&mode=raw'] = "<td><a class='btn btn-primary' target='_blank' href='{---}'>View Website</a></td></tr>";
|
|
|
|
$PAGE_TEMPLATE['customfields']['body'] = '
|
|
|
|
<div id="custom-fields-example" class="col-xs-12 col-md-5 pull-right" style="margin-right:-15px">
|
|
<table class="table table-striped table-bordered">
|
|
<tr>
|
|
<th class="text-center" colspan="2">Custom Fields</th>
|
|
</tr>
|
|
{CPAGEFIELD: name=myvideo}
|
|
{CPAGEFIELDTITLE: name=mybbarea}
|
|
{CPAGEFIELD: name=mybbarea}
|
|
{CPAGEFIELDTITLE: name=myboolean}
|
|
{CPAGEFIELD: name=myboolean}
|
|
{CPAGEFIELDTITLE: name=mycheckbox}
|
|
{CPAGEFIELD: name=mycheckbox}
|
|
{CPAGEFIELDTITLE: name=mycountry}
|
|
{CPAGEFIELD: name=mycountry}
|
|
{CPAGEFIELDTITLE: name=mydatestamp}
|
|
{CPAGEFIELD: name=mydatestamp}
|
|
{CPAGEFIELDTITLE: name=mydropdown}
|
|
{CPAGEFIELD: name=mydropdown}
|
|
{CPAGEFIELDTITLE: name=myemail}
|
|
{CPAGEFIELD: name=myemail&mode=raw}
|
|
|
|
<!-- Variation of above -->
|
|
{CPAGEFIELDTITLE: name=myemail}
|
|
{CPAGEFIELD: name=myemail}
|
|
{CPAGEFIELDTITLE: name=myfile}
|
|
{CPAGEFIELD: name=myfile}
|
|
{CPAGEFIELDTITLE: name=myicon}
|
|
{CPAGEFIELD: name=myicon}
|
|
{SETIMAGE: w=200} <!-- Set the default image size -->
|
|
{CPAGEFIELDTITLE: name=myimage}
|
|
{CPAGEFIELD: name=myimage}
|
|
{CPAGEFIELDTITLE: name=mylanguage}
|
|
{CPAGEFIELD: name=mylanguage}
|
|
{CPAGEFIELDTITLE: name=mynumber}
|
|
{CPAGEFIELD: name=mynumber}
|
|
{CPAGEFIELDTITLE: name=myprogressbar}
|
|
{CPAGEFIELD: name=myprogressbar}
|
|
{CPAGEFIELDTITLE: name=mytags}
|
|
{CPAGEFIELD: name=mytags}
|
|
{CPAGEFIELDTITLE: name=mytext}
|
|
{CPAGEFIELD: name=mytext}
|
|
{CPAGEFIELDTITLE: name=myurl}
|
|
{CPAGEFIELD: name=myurl}
|
|
|
|
<!-- Variation of above -->
|
|
{CPAGEFIELDTITLE: name=myurl}
|
|
{CPAGEFIELD: name=myurl&mode=raw}
|
|
|
|
</table>
|
|
{CPAGEEDIT}
|
|
</div>
|
|
{CPAGEBODY}
|
|
|
|
{CPAGEMESSAGE}
|
|
|
|
{CPAGESUBTITLE}
|
|
<div class="clear"><!-- --></div>
|
|
|
|
{CPAGEFIELDS_DISABLED: generate} <!-- Remove _DISABLED to generated custom-fields template code -->
|
|
{CPAGEFIELDS_DISABLED} <!-- Remove _DISABLED to render all custom-field values/options -->
|
|
|
|
{CPAGENAV}
|
|
|
|
<div class="clear"><!-- --></div>
|
|
{CPAGERATING}
|
|
|
|
|
|
|
|
';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
?>
|