Пример #1
0
 /**
  * Call before starting a row of bullet-seperated items.
  *
  * @param strng|bool $Sep The seperator used to seperate each section.
  * @since 2.1
  */
 public static function bulletRow($Sep = false)
 {
     if (!$Sep) {
         if (!self::$_BulletSep) {
             self::$_BulletSep = ' ' . Bullet() . ' ';
         }
     } else {
         self::$_BulletSep = $Sep;
     }
     self::$_BulletSection = false;
 }
Пример #2
0
 /**
  * Call before starting a row of bullet-seperated items.
  *
  * @param strng|bool $Sep The seperator used to seperate each section.
  * @since 2.1
  */
 public static function BulletRow($Sep = FALSE)
 {
     if (!$Sep) {
         if (!self::$_BulletSep) {
             self::$_BulletSep = ' ' . Bullet() . ' ';
         }
     } else {
         self::$_BulletSep = $Sep;
     }
     self::$_BulletSection = FALSE;
 }