00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 class Mage_Page_Helper_Layout extends Mage_Core_Helper_Abstract
00035 {
00036
00037
00038
00039
00040
00041
00042 public function applyHandle($pageLayout)
00043 {
00044 $pageLayout = $this->_getConfig()->getPageLayout($pageLayout);
00045
00046 if (!$pageLayout) {
00047 return $this;
00048 }
00049
00050 $this->getLayout()
00051 ->getUpdate()
00052 ->addHandle($pageLayout->getLayoutHandle());
00053
00054 return $this;
00055 }
00056
00057
00058
00059
00060
00061
00062
00063
00064 public function applyTemplate($pageLayout = null)
00065 {
00066 if ($pageLayout === null) {
00067 $pageLayout = $this->getCurrentPageLayout();
00068 } else {
00069 $pageLayout = $this->_getConfig()->getPageLayout($pageLayout);
00070 }
00071
00072 if (!$pageLayout) {
00073 return $this;
00074 }
00075
00076 if ($this->getLayout()->getBlock('root') &&
00077 !$this->getLayout()->getBlock('root')->getIsHandle()) {
00078
00079 $this->getLayout()
00080 ->getBlock('root')
00081 ->setTemplate($pageLayout->getTemplate());
00082 }
00083
00084 return $this;
00085 }
00086
00087
00088
00089
00090
00091
00092 public function getCurrentPageLayout()
00093 {
00094
00095 $handles = $this->getLayout()->getUpdate()->getHandles();
00096
00097 $pageLayoutHandles = $this->_getConfig()->getPageLayoutHandles();
00098
00099 $appliedHandles = array_intersect($handles, $pageLayoutHandles);
00100
00101 if (empty($appliedHandles)) {
00102 return false;
00103 }
00104
00105 $currentHandle = array_pop($appliedHandles);
00106
00107 $layoutCode = array_search($currentHandle, $pageLayoutHandles, true);
00108
00109 return $this->_getConfig()->getPageLayout($layoutCode);
00110 }
00111
00112
00113
00114
00115
00116
00117 protected function _getConfig()
00118 {
00119 return Mage::getSingleton('page/config');
00120 }
00121 }