Changeset 15797 for trunk/templates
- Timestamp:
- 12/27/11 01:35:35 (5 months ago)
- File:
-
- 1 edited
-
trunk/templates/base/scripts/BxBaseGrid.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/templates/base/scripts/BxBaseGrid.php
r15759 r15797 228 228 229 229 $sMethod = '_getCellHeaderDefault'; 230 $sCustomMethod = '_getCellHeader' . ucfirst($sKey);230 $sCustomMethod = '_getCellHeader' . $this->_genMethodName($sKey); 231 231 if (method_exists($this, $sCustomMethod)) 232 232 $sMethod = $sCustomMethod; … … 353 353 $sMethod = '_getCellOrder'; 354 354 355 $sCustomMethod = '_getCell' . ucfirst($sKey);355 $sCustomMethod = '_getCell' . $this->_genMethodName($sKey); 356 356 if (method_exists($this, $sCustomMethod)) 357 357 $sMethod = $sCustomMethod; … … 434 434 $sRet = ''; 435 435 foreach ($this->_aOptions[$sActionsType] as $sKey => $a) { 436 $sFunc = '_getAction' . ucfirst($sKey);436 $sFunc = '_getAction' . $this->_genMethodName($sKey); 437 437 if (!method_exists($this, $sFunc)) 438 438 $sFunc = empty($a) ? '_getActionDivider' : '_getActionDefault';
Note: See TracChangeset
for help on using the changeset viewer.