Пример #1
0
 /**
  * Setter method for $blockName, ensure the correct block name.
  *
  * @param string $name The name of the block.
  */
 public function setBlockName($name)
 {
     if (!StringHelper::endsWith($name, 'Block')) {
         $name .= 'Block';
     }
     $this->_blockName = Inflector::camelize($name);
 }