/**
  * Call util to set remove stale records and set UUID, and then setup any
  * table-specific data.
  */
 function preInsert($event)
 {
     trec_make_new($this);
     $this->ak_email = '*****@*****.**';
     $this->ak_contact = 'Emily';
     parent::preInsert($event);
 }
 /**
  * Call util to set remove stale records and set UUID, and then setup any
  * table-specific data.
  */
 function preInsert()
 {
     trec_make_new($this);
     if (is_null($this->sph_src_id)) {
         $this->sph_src_id = '123';
     }
 }
 /**
  * Call util to set remove stale records and set UUID, and then setup any
  * table-specific data.
  */
 function preInsert()
 {
     trec_make_new($this);
     // table-specific
     $this->inq_title = 'Inquiry ' . $this->inq_uuid;
     //$this->inq_status = 'A';
     $this->inq_type = Inquiry::$TYPE_TEST;
 }
 /**
  * Call util to set remove stale records and set UUID, and then setup any
  * table-specific data.
  */
 function preInsert()
 {
     trec_make_new($this);
     // table-specific
     $this->smsg_value = 'test value';
     $this->smsg_cre_user = 1;
     // system user
     $this->smsg_cre_dtim = date('Y-m-d H:i:s');
 }
 /**
  * Call util to set remove stale records and set UUID, and then setup any
  * table-specific data.
  *
  * @param Doctrine_Event $event
  */
 function preInsert($event)
 {
     trec_make_new($this);
     // table-specific
     $this->out_headline = "Outcome Headline - " . $this->out_uuid;
     $this->out_teaser = "Outcome Teaser - " . $this->out_uuid;
     $this->out_dtim = air2_date();
     parent::preInsert($event);
 }
 /**
  * Call util to set remove stale records and set UUID, and then setup any
  * table-specific data.
  */
 function preInsert()
 {
     trec_make_new($this);
     // table-specific
     if (is_null($this->src_username)) {
         $this->src_username = '******' . $this->my_uuid;
     }
     if (is_null($this->src_first_name)) {
         $this->src_first_name = 'Test Source ' . $this->my_uuid;
     }
 }
 /**
  * Call util to set remove stale records and set UUID, and then setup any
  * table-specific data.
  */
 function preInsert()
 {
     trec_make_new($this);
     // table-specific
     if (!$this->bin_user_id) {
         $this->bin_user_id = 1;
     }
     if (!$this->bin_name) {
         $this->bin_name = 'Test Bin ' . $this->my_uuid;
     }
 }
 /**
  * Call util to set remove stale records and set UUID, and then setup any
  * table-specific data.
  */
 function preInsert()
 {
     trec_make_new($this);
     // table-specific
     $this->user_username = $this->my_uuid;
     $this->user_first_name = 'Test';
     $this->user_last_name = 'User';
     $this->user_type = 'T';
     // test user
     $this->user_status = 'A';
 }
 /**
  * Call util to set remove stale records and set UUID, and then setup any
  * table-specific data.
  *
  * @param Doctrine_Event $event
  */
 function preInsert($event)
 {
     trec_make_new($this);
     // table-specific
     $this->prj_name = strtolower('project-' . $this->prj_uuid);
     $this->prj_display_name = 'Project ' . $this->prj_uuid;
     $this->prj_status = 'A';
     $this->prj_type = 'T';
     //test
     parent::preInsert($event);
 }
 /**
  * Call util to set remove stale records and set UUID, and then setup any
  * table-specific data.
  */
 function preInsert()
 {
     trec_make_new($this);
     // prevent default-project creation
     Organization::$CREATE_DEFAULT_PRJ = false;
     // table-specific
     $this->org_name = 'TestOrg' . $this->org_uuid;
     $this->org_display_name = $this->org_name;
     $this->org_type = 'T';
     $this->org_status = 'A';
     $this->org_html_color = '00FF00';
 }
 /**
  * Call util to set remove stale records and set UUID, and then setup any
  * table-specific data.
  */
 function preInsert()
 {
     trec_make_new($this);
     // table-specific
     if (is_null($this->tank_name)) {
         $this->tank_name = 'TestTank ' . $this->my_uuid;
     }
     if (is_null($this->tank_type)) {
         $this->tank_type = Tank::$TYPE_CSV;
     }
     if (is_null($this->tank_status)) {
         $this->tank_status = Tank::$STATUS_READY;
     }
 }
 /**
  * Call util to set remove stale records and set UUID, and then setup any
  * table-specific data.
  */
 function preInsert()
 {
     trec_make_new($this);
 }
 /**
  * Call util to set remove stale records and set UUID, and then setup any
  * table-specific data.
  */
 function preInsert()
 {
     trec_make_new($this);
     $this->ssearch_name = "test saved search " . $this->my_uuid;
     $this->ssearch_params = '{"footest":"bartest"}';
 }