project = $extra['project']; $this->fields['owners'] = new Pluf_Form_Field_Varchar( array('required' => false, 'label' => __('Project owners'), 'initial' => '', 'widget' => 'Pluf_Form_Widget_TextareaInput', 'widget_attrs' => array('rows' => 5, 'cols' => 40), )); $this->fields['members'] = new Pluf_Form_Field_Varchar( array('required' => false, 'label' => __('Project members'), 'widget_attrs' => array('rows' => 7, 'cols' => 40), 'widget' => 'Pluf_Form_Widget_TextareaInput', )); } public function save($commit=true) { if (!$this->isValid()) { throw new Exception(__('Cannot save the model from an invalid form.')); } // remove all the permissions $cm = $this->project->getMembershipData(); $def = array('owners' => Pluf_Permission::getFromString('IDF.project-owner'), 'members' => Pluf_Permission::getFromString('IDF.project-member')); $guser = new Pluf_User(); foreach ($def as $key=>$perm) { foreach ($cm[$key] as $user) { Pluf_RowPermission::remove($user, $this->project, $perm); } foreach (preg_split("/\015\012|\015|\012|\,/", $this->cleaned_data[$key], -1, PREG_SPLIT_NO_EMPTY) as $login) { $sql = new Pluf_SQL('login=%s', array(trim($login))); $users = $guser->getList(array('filter'=>$sql->gen())); if ($users->count() == 1) { Pluf_RowPermission::add($users[0], $this->project, $perm); } } } } }