예제 #1
0
파일: MLayout.php 프로젝트: megabr/web3cms
 /**
  * Set number of items displayed in top area.
  * @param int $value
  */
 public static function setNumberOfItemsTop($value)
 {
     if (is_numeric($value)) {
         self::$numberOfItemsTop = (int) $value;
     } else {
         self::log(array('method' => __METHOD__, 'value' => $value));
     }
 }