Example #1
0
 /**
  * Sets module.
  *
  * @param string $module
  *
  * @return SystemPlugin_Imagine_Manager
  */
 public function setModule($module = null)
 {
     if (is_null($module) || !is_string($module)) {
         $this->module = $this->plugin->getModuleName();
     } else {
         $this->module = $module;
     }
     return $this;
 }