Beispiel #1
0
 /**
  * Outputs the opening section of a box.
  *
  * @param string $classes A space-separated list of CSS classes
  * @param string $id An optional ID
  * @param array $attributes An array of other attributes to give the box.
  * @return string the HTML to output.
  */
 public function box_start($classes = 'generalbox', $id = null, $attributes = array())
 {
     if (is_array($classes)) {
         $classes = implode(' ', $classes);
     }
     return parent::box_start($classes . ' p-y-1', $id, $attributes);
 }