Skip to content

Instantly share code, notes, and snippets.

@delbono
Created August 25, 2010 13:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save delbono/549524 to your computer and use it in GitHub Desktop.
Save delbono/549524 to your computer and use it in GitHub Desktop.
<?php
class BaseForm extends sfFormSymfony
{
static protected $user = null;
static public function getUser()
{
return self::$user;
}
static public function getValidUser()
{
if (!self::$user instanceof sfGuardSecurityUser)
{
throw new RuntimeException('No valid user instance available');
}
return self::$user;
}
static public function setUser(sfGuardSecurityUser $user)
{
self::$user = $user;
}
}
<?php
class OrdinativiHealthStateForm extends BaseOrdinativiHealthStateForm
{
public function configure()
{
$this->useFields(array('name'));
$this->widgetSchema->setLabels(array(
'name' => 'Nome',
));
}
protected function doSave($con = null)
{
$user = self::getValidUser();
if (is_null($con))
{
$con = $this->getConnection();
}
$this->updateObject(array('user_id'=>$user->getGuardUser()->getId(), 'name'=>'prova, verrà sostituita dal campo del form'));
$this->object->save($con);
$this->saveEmbeddedForms($con);
return parent::doSave($con);
}
public function updateObject($values = null)
{
$object = parent::updateObject($values);
return $object;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment