| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Old Sites/Libteiser - Ojs/ojs/plugins/generic/cms/ |
Upload File : |
<?php
/**
* @file CmsHandler.inc.php
*
* Copyright (c) 2006-2007 Gunther Eysenbach, Juan Pablo Alperin, MJ Suhonos
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @class CmsHandler
* @ingroup plugins_generic_cms
*
* @brief Find the content and display the appropriate page
*/
// $Id: CmsHandler.inc.php,v 1.10 2008/07/01 01:16:13 asmecher Exp $
import('core.Handler');
import('classes.plugins.PluginRegistry');
class CmsHandler extends Handler {
function index( $args ) {
}
function view( $args ) {
if ( count($args) > 0 ) {
$journal = &Request::getJournal();
$journalId = $journal->getJournalId();
$cmsPlugin = &PluginRegistry::getPlugin('generic', 'CmsPlugin');
$templateMgr = &TemplateManager::getManager();
$allContent = $cmsPlugin->getSetting($journalId, 'content');
$cmsPlugin->import('ContentManager');
$contentManager =& new ContentManager();
$content = array();
$headings = array();
$current = $contentManager->cleanurl($args[0]);
// get the content
$contentManager->parseContents( $headings, $content, $current );
// silly way to do this, but we have to find all the proper titles
// and they are not stored anywhere conveniently
$title = $current;
$cur_array = explode(":", $current);
if ( count($cur_array) > 1 )
$cur_array[1] = $cur_array[0].':'.$cur_array[1];
if ( count($cur_array) > 2 )
$cur_array[2] = $cur_array[0].':'.$cur_array[1].':'.$cur_array[2];
array_pop($cur_array);
$breadcrumbs = array();
foreach ( $headings as $heading ) {
if ( count($cur_array) > 0 && $cur_array[0] == $heading[1] )
$breadcrumbs[] = array(
'./'.$heading[1],
$heading[2],
$heading[2] );
elseif ( count($cur_array) > 1 && $cur_array[1] == $heading[1] )
$breadcrumbs[] = array(
'./'.$heading[1],
$heading[2],
$heading[2] );
elseif ( count($cur_array) > 2 && $cur_array[2] == $heading[1] )
$breadcrumbs[] = array(
'./'.$heading[1],
$heading[2],
$heading[2] );
if ( $heading[1] == $current ) {
$title = $heading[2];
break;
}
}
$theContent = isset($content[$current])?$content[$current]:null;
HookRegistry::call("Plugins::CmsHandler", array($current, &$theContent));
// and assign the template vars needed
$templateMgr->assign('title', $title);
$templateMgr->assign('content', $theContent);
$templateMgr->assign('headings', $headings);
$templateMgr->assign('cmsPluginToc', $headings);
$templateMgr->assign('pageHierarchy', $breadcrumbs);
$templateMgr->display($cmsPlugin->getTemplatePath().'content.tpl');
}
}
}
?>