1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392: 393: 394: 395: 396: 397: 398: 399: 400: 401: 402: 403: 404: 405: 406: 407: 408: 409: 410: 411: 412: 413: 414: 415: 416: 417: 418: 419: 420: 421: 422: 423: 424: 425: 426: 427: 428: 429: 430: 431: 432: 433: 434: 435: 436: 437: 438: 439: 440: 441: 442: 443: 444: 445: 446: 447: 448: 449: 450: 451: 452: 453: 454: 455: 456: 457: 458: 459: 460: 461: 462: 463: 464: 465: 466: 467: 468: 469: 470: 471: 472: 473: 474: 475: 476: 477: 478: 479: 480: 481: 482:
<?php
$plugin_is_filter = 9 | CLASS_PLUGIN;
$plugin_description = gettext("A CMS plugin that adds the capability to run an entire gallery focused website with zenphoto.");
$plugin_notice = gettext("<strong>Note:</strong> This feature must be integrated into your theme. It is not supported by the <em>basic</em> theme.");
$plugin_author = "Malte Müller (acrylian), Stephen Billard (sbillard)";
$plugin_category = gettext('Media');
$option_interface = 'zenpagecms';
if (OFFSET_PATH == 2) {
setOptionDefault('zenpageNewsLink', array_key_exists('news', $_zp_conf_vars['special_pages']) ? $_zp_conf_vars['special_pages']['news']['rewrite'] : 'news');
setOptionDefault('zenpageCategoryLink', array_key_exists('category', $_zp_conf_vars['special_pages']) ? $_zp_conf_vars['special_pages']['category']['rewrite'] : '_NEWS_/category');
setOptionDefault('zenpageNewsArchiveLink', array_key_exists('news_archive', $_zp_conf_vars['special_pages']) ? $_zp_conf_vars['special_pages']['news_archive']['rewrite'] : '_NEWS_/archive');
setOptionDefault('zenpagePagesLink', array_key_exists('pages', $_zp_conf_vars['special_pages']) ? $_zp_conf_vars['special_pages']['pages']['rewrite'] : 'pages');
}
$_zp_conf_vars['special_pages']['news'] = array(
'define' => '_NEWS_',
'rewrite' => getOption('zenpageNewsLink'),
'option' => 'zenpageNewsLink',
'default' => 'news');
$_zp_conf_vars['special_pages']['category'] = array(
'define' => '_CATEGORY_',
'rewrite' => getOption('zenpageCategoryLink'),
'option' => 'zenpageCategoryLink',
'default' => '_NEWS_/category');
$_zp_conf_vars['special_pages']['news_archive'] = array(
'define' => '_NEWS_ARCHIVE_',
'rewrite' => getOption('zenpageNewsArchiveLink'),
'option' => 'zenpageNewsArchiveLink',
'default' => '_NEWS_/archive');
$_zp_conf_vars['special_pages']['pages'] = array(
'define' => '_PAGES_',
'rewrite' => getOption('zenpagePagesLink'),
'option' => 'zenpagePagesLink',
'default' => 'pages');
$_zp_conf_vars['special_pages'][] = array(
'definition' => '%NEWS%',
'rewrite' => '_NEWS_');
$_zp_conf_vars['special_pages'][] = array(
'definition' => '%CATEGORY%',
'rewrite' => '_CATEGORY_');
$_zp_conf_vars['special_pages'][] = array(
'definition' => '%NEWS_ARCHIVE%',
'rewrite' => '_NEWS_ARCHIVE_');
$_zp_conf_vars['special_pages'][] = array(
'definition' => '%PAGES%',
'rewrite' => '_PAGES_');
$_zp_conf_vars['special_pages'][] = array(
'define' => false,
'rewrite' => '^%PAGES%/*$',
'rule' => '%REWRITE% index.php?p=pages [L,QSA]');
$_zp_conf_vars['special_pages'][] = array(
'define' => false,
'rewrite' => '^%PAGES%/(.*)/?$',
'rule' => '%REWRITE% index.php?p=pages&title=$1 [L, QSA]');
$_zp_conf_vars['special_pages'][] = array(
'define' => false,
'rewrite' => '^%CATEGORY%/(.*)/([0-9]+)/?$',
'rule' => '%REWRITE% index.php?p=news&category=$1&page=$2 [L,QSA]');
$_zp_conf_vars['special_pages'][] = array(
'define' => false,
'rewrite' => '^%CATEGORY%/(.*)/?$',
'rule' => '%REWRITE% index.php?p=news&category=$1 [L,QSA]');
$_zp_conf_vars['special_pages'][] = array(
'define' => false,
'rewrite' => '^%NEWS_ARCHIVE%/(.*)/([0-9]+)/?$',
'rule' => '%REWRITE% index.php?p=news&date=$1&page=$2 [L,QSA]');
$_zp_conf_vars['special_pages'][] = array(
'define' => false,
'rewrite' => '^%NEWS_ARCHIVE%/(.+)/?$',
'rule' => '%REWRITE% index.php?p=news&date=$1 [L,QSA]');
$_zp_conf_vars['special_pages'][] = array(
'define' => false,
'rewrite' => '^%NEWS%/([0-9]+)/?$',
'rule' => '%REWRITE% index.php?p=news&page=$1 [L,QSA]');
$_zp_conf_vars['special_pages'][] = array(
'define' => false,
'rewrite' => '^%NEWS%/(.+)/?$',
'rule' => '%REWRITE% index.php?p=news&title=$1 [L,QSA]');
$_zp_conf_vars['special_pages'][] = array(
'define' => false,
'rewrite' => '^%NEWS%/*$',
'rule' => '%REWRITE% index.php?p=news [L,QSA]');
zp_register_filter('checkForGuest', 'zenpagecms::checkForGuest');
zp_register_filter('isMyItemToView', 'zenpagecms::isMyItemToView');
zp_register_filter('admin_toolbox_global', 'zenpagecms::admin_toolbox_global');
zp_register_filter('admin_toolbox_news', 'zenpagecms::admin_toolbox_news');
zp_register_filter('admin_toolbox_pages', 'zenpagecms::admin_toolbox_pages');
zp_register_filter('themeSwitcher_head', 'zenpagecms::switcher_head');
zp_register_filter('themeSwitcher_Controllink', 'zenpagecms::switcher_controllink', 0);
zp_register_filter('load_theme_script', 'zenpagecms::switcher_setup', 99);
zp_register_filter('load_theme_script', 'zenpagecms::disableZenpageItems', 0);
require_once(SERVERPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER . '/zenpage/class-zenpage.php');
require_once(SERVERPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER . '/zenpage/class-zenpageroot.php');
require_once(SERVERPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER . '/zenpage/class-zenpageitems.php');
require_once(SERVERPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER . '/zenpage/class-zenpagenews.php');
require_once(SERVERPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER . '/zenpage/class-zenpagepage.php');
require_once(SERVERPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER . '/zenpage/class-zenpagecategory.php');
$_zp_zenpage = new Zenpage();
class zenpagecms {
function __construct() {
if (OFFSET_PATH == 2) {
setOptionDefault('zenpage_articles_per_page', '10');
setOptionDefault('zenpage_text_length', '500');
setOptionDefault('zenpage_textshorten_indicator', ' (...)');
gettext($str = 'Read more');
setOptionDefault('zenpage_read_more', getAllTranslations($str));
setOptionDefault('zenpage_indexhitcounter', false);
setOptionDefault('enabled-zenpage-items', 'news-and-pages');
setOptionDefault('zenpage_titlelinkdate_articles', 0);
setOptionDefault('zenpage_titlelinkdate_categories', 0);
setOptionDefault('zenpage_titlelinkdate_pages', 0);
setOptionDefault('zenpage_titlelinkdate_location', 'after');
setOptionDefault('zenpage_titlelinkdate_dateformat', 'timestamp');
}
}
function getOptionsSupported() {
global $_common_truncate_handler;
$options = array(
gettext('Enabled Zenpage items') => array(
'key' => 'enabled-zenpage-items',
'type' => OPTION_TYPE_RADIO,
'order' => 7,
'buttons' => array(
gettext('Enable news articles and pages') => 'news-and-pages',
gettext('Enable news') => 'news',
gettext('Enable pages') => 'pages'
),
'desc' => gettext('This enables or disables the admin tabs for pages and/or news articles. To hide news and/or pages content on the front end as well, themes must be setup to use <br><code>if(ZP_NEWS_ENABLED) { … }</code> or <br><code>if(ZP_PAGES_ENABLED) { … }</code> in appropriate places. Same if disabled items should blocked as they otherwise still can be accessed via direct links. <p class="notebox"><strong>NOTE:</strong> This does not delete content and is not related to management rights.</p>')
),
gettext('Articles per page (theme)') => array(
'key' => 'zenpage_articles_per_page',
'type' => OPTION_TYPE_TEXTBOX,
'order' => 0,
'desc' => gettext("How many news articles you want to show per page on the news or news category pages.")),
gettext('News article text length') => array(
'key' => 'zenpage_text_length',
'type' => OPTION_TYPE_TEXTBOX,
'order' => 1,
'desc' => gettext("The length of news article excerpts in news or news category pages. Leave empty for full text.") . '<br />' .
gettext("You can also set a custom article shorten length for the news loop excerpts by using the standard TinyMCE <em>page break</em> plugin button (or manually using the html comment snippet <code><!-- pagebreak --></code>). If set, this will override this option.")),
gettext('News article text shorten indicator') => array(
'key' => 'zenpage_textshorten_indicator',
'type' => OPTION_TYPE_TEXTBOX,
'order' => 2,
'desc' => gettext("Something that indicates that the article text is shortened, “ (...)” by default.")),
gettext('Read more') => array(
'key' => 'zenpage_read_more',
'type' => OPTION_TYPE_TEXTBOX,
'multilingual' => 1,
'order' => 3,
'desc' => gettext("The text for the link to the full article.")),
gettext('New titlelink with date: Item types') => array(
'key' => 'zenpage_titlelinkdate_items',
'type' => OPTION_TYPE_CHECKBOX_ARRAY,
'checkboxes' => array(
gettext('Articles') => 'zenpage_titlelinkdate_articles',
gettext('Categories') => 'zenpage_titlelinkdate_categories',
gettext('Pages') => 'zenpage_titlelinkdate_pages'
),
'order' => 4,
'desc' => gettext('Select the item type where the date always should be appended or prepended to the titlelink of newly created items.') . '<p class="notebox">' . gettext('A date will automatically be added if you are creating an item with an already used titlelink.') . '</p>'),
gettext('New titlelink with date: Date location') => array(
'key' => 'zenpage_titlelinkdate_location',
'type' => OPTION_TYPE_RADIO,
'buttons' => array(
gettext('Before') => 'before',
gettext('After') => 'after'
),
'order' => 5,
'desc' => gettext('Choose where to add the date to the titlelink of newly created items.')),
gettext('New titlelink with date: Date format') => array(
'key' => 'zenpage_titlelinkdate_dateformat',
'type' => OPTION_TYPE_SELECTOR,
'selections' => array(
gettext('Y-m-d') => 'Y-m-d',
gettext('Ymd') => 'Ymd',
gettext('Y-m-d_H-i-s') => 'Y-m-d_H-i-s',
gettext('YmdHis') => 'YmdHis',
gettext('Unix timestamp') => 'timestamp'
),
'order' => 6,
'desc' => gettext('Choose which date format to append or prepend to the titlelink of newly created items.')),
gettext('Truncate titles*') => array(
'key' => 'menu_truncate_string',
'type' => OPTION_TYPE_TEXTBOX,
'disabled' => $_common_truncate_handler,
'order' => 23,
'desc' => gettext('Limit titles to this many characters. Zero means no limit.')),
gettext('Truncate indicator*') => array(
'key' => 'menu_truncate_indicator',
'type' => OPTION_TYPE_TEXTBOX,
'disabled' => $_common_truncate_handler,
'order' => 24,
'desc' => gettext('Append this string to truncated titles.')),
);
if ($_common_truncate_handler) {
$options['note'] = array(
'key' => 'menu_truncate_note',
'type' => OPTION_TYPE_NOTE,
'order' => 25,
'desc' => '<p class="notebox">' . $_common_truncate_handler . '</p>');
} else {
$_common_truncate_handler = gettext('* These options may be set via the <a href="javascript:gotoName(\'zenpage\');"><em>Zenpage</em></a> plugin options.');
$options['note'] = array(
'key' => 'menu_truncate_note',
'type' => OPTION_TYPE_NOTE,
'order' => 25,
'desc' => gettext('<p class="notebox">*<strong>Note:</strong> The setting of these options are shared with other plugins.</p>'));
}
return $options;
}
function handleOption($option, $currentValue) {
}
static function disableZenpageItems($script, $valid) {
global $_zp_gallery_page;
if ($script && $valid) {
switch ($_zp_gallery_page) {
case 'news.php':
if (!ZP_NEWS_ENABLED) {
$script = '404.php';
}
break;
case 'pages.php':
if (!ZP_PAGES_ENABLED) {
$script = '404.php';
}
break;
}
return $script;
}
}
static function switcher_head($list) {
?>
<script type="text/javascript">
function switchCMS(checked) {
window.location = '?cmsSwitch=' + checked;
}
</script>
<?php
return $list;
}
static function switcher_controllink($theme) {
global $_zp_gallery_page;
if ($_zp_gallery_page == 'pages.php' || $_zp_gallery_page == 'news.php') {
$disabled = ' disabled="disalbed"';
} else {
$disabled = '';
}
if (getPlugin('pages.php', $theme)) {
?>
<span id="themeSwitcher_zenpage" title="<?php echo gettext("Enable Zenpage CMS plugin"); ?>">
<label>
Zenpage
<input type="checkbox" name="cmsSwitch" id="cmsSwitch" value="1"<?php if (extensionEnabled('zenpage')) echo $disabled . ' checked="checked"'; ?> onclick="switchCMS(this.checked);" />
</label>
</span>
<?php
}
return $theme;
}
static function switcher_setup($ignore) {
global $_zp_zenpage;
if (class_exists('themeSwitcher') && themeSwitcher::active()) {
if (isset($_GET['cmsSwitch'])) {
setOption('themeSwitcher_zenpage_switch', $cmsSwitch = (int) ($_GET['cmsSwitch'] == 'true'));
if (!$cmsSwitch) {
enableExtension('zenpage', 0, false);
}
}
}
if (extensionEnabled('zenpage')) {
require_once(SERVERPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER . '/zenpage/zenpage-template-functions.php');
} else {
$_zp_zenpage = NULL;
}
return $ignore;
}
static function checkForGuest($auth) {
global $_zp_current_zenpage_page, $_zp_current_category;
if (!is_null($_zp_current_zenpage_page)) {
$authType = $_zp_current_zenpage_page->checkforGuest();
return $authType;
} else if (!is_null($_zp_current_category)) {
$authType = $_zp_current_category->checkforGuest();
return $authType;
}
return $auth;
}
static function isMyItemToView($fail) {
global $_zp_gallery_page, $_zp_current_zenpage_page, $_zp_current_zenpage_news, $_zp_current_category;
switch ($_zp_gallery_page) {
case 'pages.php':
if ($_zp_current_zenpage_page->isMyItem(LIST_RIGHTS)) {
return true;
}
break;
case 'news.php':
if (in_context(ZP_ZENPAGE_NEWS_ARTICLE)) {
if ($_zp_current_zenpage_news->isMyItem(LIST_RIGHTS)) {
return true;
}
} else {
if (zp_loggedin(ALL_NEWS_RIGHTS) || !is_object($_zp_current_category) || !$_zp_current_category->isProtected()) {
return true;
}
if (is_object($_zp_current_category)) {
if ($_zp_current_category->isMyItem(LIST_RIGHTS)) {
return true;
}
}
}
return false;
break;
}
return $fail;
}
static function admin_toolbox_global($zf) {
global $_zp_zenpage;
if (zp_loggedin(ZENPAGE_NEWS_RIGHTS) && ZP_NEWS_ENABLED) {
echo '<li><a href="' . $zf . '/' . PLUGIN_FOLDER . '/zenpage/admin-news-articles.php">' . gettext('News') . '</a></li>';
}
if (zp_loggedin(ZENPAGE_PAGES_RIGHTS) && ZP_PAGES_ENABLED) {
echo '<li><a href="' . $zf . '/' . PLUGIN_FOLDER . '/zenpage/admin-pages.php">' . gettext('Pages') . '</a></li>';
}
return $zf;
}
static function admin_toolbox_pages($redirect, $zf) {
if (zp_loggedin(ZENPAGE_PAGES_RIGHTS) && ZP_PAGES_ENABLED) {
$delete_page = gettext("Are you sure you want to delete this page? THIS CANNOT BE UNDONE!");
echo '<li><a href="' . $zf . '/' . PLUGIN_FOLDER . '/zenpage/admin-edit.php?page&edit&titlelink=' . html_encode(getPageTitlelink()) . '">' . gettext('Edit Page') . '</a></li>';
?>
<li>
<a href="javascript:confirmDelete('<?php echo $zf . '/' . PLUGIN_FOLDER; ?>/zenpage/admin-pages.php?delete=<?php echo html_encode(getPageTitlelink()); ?>&XSRFToken=<?php echo getXSRFToken('delete'); ?>', '<?php echo $delete_page; ?>')" title="<?php echo gettext('Delete page'); ?>"><?php echo gettext('Delete Page'); ?></a>
</li>
<?php
echo '<li><a href="' . FULLWEBPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER . '/zenpage/admin-edit.php?page&add">' . gettext('New Page') . '</a></li>';
}
return $redirect . '&title=' . urlencode(getPageTitlelink());
}
static function admin_toolbox_news($redirect, $zf) {
global $_zp_current_zenpage_news, $_zp_current_category;
if (is_NewsArticle()) {
if (zp_loggedin(ZENPAGE_NEWS_RIGHTS) && ZP_NEWS_ENABLED) {
$delete_article = gettext("Are you sure you want to delete this article? THIS CANNOT BE UNDONE!");
echo "<li><a href=\"" . $zf . '/' . PLUGIN_FOLDER . "/zenpage/admin-edit.php?newsarticle&edit&titlelink=" . html_encode($_zp_current_zenpage_news->getTitleLink()) . "\">" . gettext("Edit Article") . "</a></li>";
?>
<li>
<a href="javascript:confirmDelete('<?php echo $zf . '/' . PLUGIN_FOLDER; ?>/zenpage/admin-news-articles.php?delete=<?php echo html_encode($_zp_current_zenpage_news->getTitleLink()); ?>&XSRFToken=<?php echo getXSRFToken('delete'); ?>', '<?php echo $delete_article; ?>')" title="<?php echo gettext('Delete article'); ?>"><?php echo gettext('Delete Article'); ?></a>
</li>
<?php
echo '<li><a href="' . $zf . '/' . PLUGIN_FOLDER . '/zenpage/admin-edit.php?newsarticle&add">' . gettext('New Article') . '</a></li>';
}
$redirect .= '&title=' . urlencode($_zp_current_zenpage_news->getTitlelink());
} else {
if (zp_loggedin(ZENPAGE_NEWS_RIGHTS) && ZP_NEWS_ENABLED) {
$delete_category = gettext("Are you sure you want to delete this category? THIS CANNOT BE UNDONE!");
if (!empty($_zp_current_category)) {
echo '<li><a href="' . $zf . '/' . PLUGIN_FOLDER . '/zenpage/admin-edit.php?newscategory&titlelink=' . html_encode($_zp_current_category->getTitleLink()) . '">' . gettext('Edit Category') . '</a></li>';
echo '<li><a href="' . $zf . '/' . PLUGIN_FOLDER . '/zenpage/admin-edit.php?newscategory&add">' . gettext('New Category') . '</a></li>';
?>
<li>
<a href="javascript:confirmDelete('<?php echo $zf . '/' . PLUGIN_FOLDER; ?>/zenpage/admin-categories.php?delete=<?php echo html_encode($_zp_current_category->getTitleLink()); ?>&tab=categories&XSRFToken=<?php echo getXSRFToken('delete_category'); ?>', '<?php echo $delete_category; ?>')" title="<?php echo gettext('Delete Category'); ?>"><?php echo gettext('Delete Category'); ?></a>
</li>
<?php
$redirect .= '&category=' . $_zp_current_category->getTitlelink();
}
}
}
return $redirect;
}
}
function getNewsIndexURL($page = '') {
$rewrite = _NEWS_ . '/';
$plain = '/index.php?p=news';
if ($page > 1) {
$rewrite .= $page . '/';
$plain .= '&page=' . $page;
}
return zp_apply_filter('getLink', rewrite_path($rewrite, $plain), 'news.php', $page);
}
function getNewsArchiveURL($date) {
return zp_apply_filter('getLink', rewrite_path(_NEWS_ARCHIVE_ . '/' . $date . '/', "/index.php?p=news&date=$date"), 'news.php', NULL);
}
?>