Ejemplo n.º 1
0
 /**
  * Activates a setting
  *
  * @param $key
  * @param null|string $category
  * @return bool
  */
 public function activate($key, $category = null)
 {
     if (is_null($category)) {
         $pieces = explode('.', $key);
         $category = $pieces[0];
         $key = $pieces[1];
     }
     return $this->model->activateSetting($category, $key);
 }