jquery = $this->view->jQuery(); $this->jquery->enable() ->uiEnable(); return $this; } /** * Helps with building the correct Attributes Array structure. * * @param String $id * @param String $value * @param Array $attribs * @return Array $attribs */ protected function _prepareAttributes($id, $value, $attribs) { if(!isset($attribs['id'])) { $attribs['id'] = $id; } $attribs['name'] = $id; $attribs['value'] = (string) $value; return $attribs; } }