Example #1
0
 /**
  * Add content to this zone.
  * 
  * @param Content|string|array $content
  * @param int $order
  * @return Zone
  */
 public function add($content, $order = null)
 {
     $this->model->addContent($this->name, $content, $order);
     return $this;
 }