<?php
|
|
|
|
if(!defined('QUINTACMS') ) die("No quinta.");
|
|
|
|
|
|
/**
|
|
* Class ContentBlockController - selects and renders items in a content block.
|
|
*
|
|
* This is the View class for display functionality of the ContentBlock class.
|
|
* It provides a div based area for content with hierarchy, css id and class
|
|
* and a relationship to the basic areas provided by PageController. It is to a
|
|
* ContentBlock that a ContentItem, MenuItem or ActionItem is assigned. This
|
|
* class will render any child ContentBlocks and all associated Items. These
|
|
* associations may configured via the QuintaCMS administrative interface and
|
|
* will then automatically be reflected in the associated PageController display.
|
|
*
|
|
* This class is created by PageController which passes a reference to the main parent
|
|
* object and the ContentBlock object from the content_block table in the database.
|
|
*
|
|
*@author Erik Winn <sidewalksoftware@gmail.com>
|
|
*
|
|
*@version 0.3
|
|
*
|
|
* @package Quinta
|
|
* @subpackage Controllers
|
|
*/
|
|
class ContentBlockController extends QPanel{
|
|
protected $objParentObject;
|
|
|
|
protected $objContentBlock;
|
|
|
|
///Arrays of child blocks and content items and menus managed
|
|
public $aryChildContentBlockControllers = null;
|
|
public $aryContentItemControllers = null;
|
|
public $aryMenuControllers = null;
|
|
public $aryModules = null;
|
|
public $aryModuleViews = null;
|
|
|
|
/// Metacontrol to handle title and description - maybe drop in favor of panels to optimize later.
|
|
protected $mctContentBlock;
|
|
|
|
/// Controls that allow the viewing of ContentBlock's individual data fields
|
|
protected $pnlTitle;
|
|
protected $pnlDescription;
|
|
|
|
/// This ContentBlock's CSS id
|
|
protected $strCssId;
|
|
|
|
public function __construct($objParentObject, $objContentBlock, $strCssId){
|
|
//Parent must always be a child of QForm or Qcontrol
|
|
$this->objParentObject = $objParentObject;
|
|
$this->strCssId = $strCssId;
|
|
$this->objContentBlock = $objContentBlock;
|
|
|
|
try {
|
|
parent::__construct($this->objParentObject, $this->strCssId);
|
|
} catch (QCallerException $objExc) {
|
|
$objExc->IncrementOffset();
|
|
throw $objExc;
|
|
}
|
|
|
|
$this->initModuleViews();
|
|
$this->initContentBlockControllers();
|
|
|
|
/*An idea:
|
|
|
|
if(!$this->mctContentBlock || !$this->objContentBlock )
|
|
$this->Template = 'BasicContentBlock.tpl.php';
|
|
else
|
|
switch( $this->objContentBlock->Type )
|
|
{
|
|
case 'Menu':
|
|
$this->Template = 'MenuContentBlock.tpl.php';
|
|
break;
|
|
case 'MenuItem':
|
|
$this->Template = 'MenuItemContentBlock.tpl.php';
|
|
break;
|
|
case 'Header':
|
|
$this->Template = 'HeaderContentBlock.tpl.php';
|
|
break;
|
|
case 'RightPanel':
|
|
$this->Template = 'RightPanelContentBlock.tpl.php';
|
|
break;
|
|
case 'LeftPanel':
|
|
$this->Template = 'LeftPanelContentBlock.tpl.php';
|
|
break;
|
|
case 'CenterPanel':
|
|
$this->Template = 'CenterPanelContentBlock.tpl.php';
|
|
break;
|
|
case 'Footer':
|
|
$this->Template = 'FooterContentBlock.tpl.php';
|
|
break;
|
|
case 'BlockHeader':
|
|
$this->Template = 'BlockHeaderContentBlock.tpl.php';
|
|
break;
|
|
case 'BlockFooter':
|
|
$this->Template = 'BlockFooterContentBlock.tpl.php';
|
|
break;
|
|
default:
|
|
$this->Template = 'BasicContentBlock.tpl.php';
|
|
}*/
|
|
|
|
}
|
|
/**
|
|
* This function handles rendering of "passive" content blocks. It is invoked if the
|
|
* object passed to the constructor is of type ContentBlock. Passive content blocks
|
|
* contain only data to be displayed and do not have any (overt) action controls.
|
|
*/
|
|
protected function initContentBlockControllers(){
|
|
///@todo drop the meta control to optimize later ..
|
|
$this->mctContentBlock = new ContentBlockMetaControl($this, $this->objContentBlock);
|
|
|
|
$this->pnlTitle = $this->mctContentBlock->pnlTitle_Create($this->CssId );
|
|
$this->pnlTitle->CssClass = 'ContentBlockTitle';
|
|
$this->pnlDescription = $this->mctContentBlock->pnlDescription_Create($this->CssId);
|
|
$this->pnlDescription->CssClass = 'ContentBlockDescription';
|
|
// Setup the Template
|
|
$this->Template = __QUINTA_CORE_VIEWS__ . '/ContentBlockView.tpl.php';
|
|
|
|
// foreach ( $this->objContentBlock->GetChildContentBlockArray(
|
|
foreach ( ContentBlock::LoadArrayByParentContentBlockId($this->objContentBlock->Id,
|
|
QQ::Clause (QQ::OrderBy(QQN::ContentBlock()->SortOrder) )
|
|
) as $childContentBlock )
|
|
{
|
|
$this->aryChildContentBlockControllers[] = new ContentBlockController( $this, $childContentBlock, null);
|
|
}
|
|
|
|
foreach ( $this->objContentBlock->GetContentItemArray(
|
|
QQ::Clause (QQ::OrderBy(QQN::ContentItem()->SortOrder) )
|
|
) as $objContentItem )
|
|
{
|
|
$objContentItemController = new ContentItemController( $this, $objContentItem );
|
|
$objContentItemController->CssClass = $objContentItem->Type;
|
|
$this->aryContentItemControllers[] = $objContentItemController;
|
|
}
|
|
foreach ( $this->objContentBlock->GetMenuArray(
|
|
QQ::Clause (QQ::OrderBy(QQN::Menu()->SortOrder) )
|
|
) as $objMenu )
|
|
{
|
|
$objMenuController = new MenuController( $this, $objMenu );
|
|
$objMenuController->CssClass = $objMenu->Type;
|
|
$this->aryMenuControllers[] = $objMenuController;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
protected function initModuleViews(){
|
|
$this->aryModules = $this->objContentBlock->GetModuleArray();
|
|
if(!$this->aryModules)
|
|
return false;
|
|
foreach($this->aryModules as $objModule){
|
|
$strModuleClassName = $objModule->ClassName;
|
|
try{
|
|
$objModuleView = new $strModuleClassName($this, $objModule);
|
|
} catch (QCallerException $objExc) {
|
|
$objExc->IncrementOffset();
|
|
throw $objExc;
|
|
}
|
|
$this->aryModuleViews[] = $objModuleView;
|
|
|
|
///@todo - add module to the global list?
|
|
/* if(!IndexPage::$MainWindow->GetActiveModule($strModuleClassName) )
|
|
IndexPage::$MainWindow->AddActiveModule ( $objModuleView );*/
|
|
}
|
|
}
|
|
|
|
public function __get($strName){
|
|
switch ($strName){
|
|
case 'HasModules':
|
|
return ! empty($this->aryModuleViews);
|
|
case 'HasMenus':
|
|
return ! empty($this->aryMenuControllers);
|
|
case 'HasContentItems':
|
|
return ! empty($this->aryContentItemControllers);
|
|
case 'HasContentBlocks':
|
|
return ! empty($this->aryChildContentBlockControllers);
|
|
case 'Title':
|
|
return $this->objContentBlock->Title ;
|
|
case 'Description':
|
|
return $this->objContentBlock->Description ;
|
|
case 'ShowTitle':
|
|
return $this->objContentBlock->ShowTitle ;
|
|
case 'ShowDescription':
|
|
return $this->objContentBlock->ShowDescription ;
|
|
case 'CssId':
|
|
return $this->strCssId ;
|
|
case 'TitlePanel':
|
|
return $this->pnlTitle ;
|
|
case 'DescriptionPanel':
|
|
return $this->pnlDescription ;
|
|
default:
|
|
try {
|
|
return parent::__get($strName);
|
|
} catch (QCallerException $objExc) {
|
|
$objExc->IncrementOffset();
|
|
throw $objExc;
|
|
}
|
|
}
|
|
}
|
|
|
|
public function __set($strName, $mixValue){
|
|
switch ($strName){
|
|
case 'Title':
|
|
try {
|
|
return ($this->objContentBlock->Title = QType::Cast($mixValue, QType::String));
|
|
} catch (QInvalidCastException $objExc) {
|
|
$objExc->IncrementOffset();
|
|
throw $objExc;
|
|
}
|
|
|
|
case 'Description':
|
|
try {
|
|
return ($this->objContentBlock->Description = QType::Cast($mixValue, QType::String));
|
|
} catch (QInvalidCastException $objExc) {
|
|
$objExc->IncrementOffset();
|
|
throw $objExc;
|
|
}
|
|
|
|
default:
|
|
try {
|
|
return (parent::__set($strName, $mixValue));
|
|
} catch (QCallerException $objExc) {
|
|
$objExc->IncrementOffset();
|
|
throw $objExc;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
?>
|