Changeset 21573 for branches/version-2_12-dev/data/class/SC_View.php
- Timestamp:
- 2012/03/02 11:17:03 (14 years ago)
- File:
-
- 1 edited
-
branches/version-2_12-dev/data/class/SC_View.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/data/class/SC_View.php
r21555 r21573 116 116 */ 117 117 function registFilter() { 118 $this->_smarty->register_prefilter(array(&$this, 'prefilter_transform e'));119 $this->_smarty->register_outputfilter(array(&$this, 'outputfilter_transform e'));118 $this->_smarty->register_prefilter(array(&$this, 'prefilter_transform')); 119 $this->_smarty->register_outputfilter(array(&$this, 'outputfilter_transform')); 120 120 } 121 121 … … 126 126 * @return string $source ソース 127 127 */ 128 function prefilter_transform e($source, &$smarty) {128 function prefilter_transform($source, &$smarty) { 129 129 // フックポイントを実行. 130 130 $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->objPage->plugin_activate_flg); 131 $objPlugin->doAction('prefilterTransform e', array(&$source, $this->objPage));131 $objPlugin->doAction('prefilterTransform', array(&$source, $this->objPage)); 132 132 return $source; 133 133 } … … 139 139 * @return string $source ソース 140 140 */ 141 function outputfilter_transform e($source, &$smarty) {141 function outputfilter_transform($source, &$smarty) { 142 142 // フックポイントを実行. 143 143 $objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance($this->objPage->plugin_activate_flg); 144 $objPlugin->doAction('outputfilterTransform e', array(&$source, $this->objPage));144 $objPlugin->doAction('outputfilterTransform', array(&$source, $this->objPage)); 145 145 return $source; 146 146 }
Note: See TracChangeset
for help on using the changeset viewer.
