Esempio n. 1
0
 public function addJobToHistory(JobeetJob $job)
 {
     $ids = $this->getAttribute('job_history', array());
     if (!in_array($job->getId(), $ids)) {
         array_unshift($ids, $job->getId());
         $this->setAttribute('job_history', array_slice($ids, 0, 3));
     }
 }
Esempio n. 2
0
function create_job($defaults = array())
{
    static $category = null;
    if (is_null($category)) {
        $category = JobeetCategoryPeer::doSelectOne(new Criteria());
    }
    $job = new JobeetJob();
    $job->fromArray(array_merge(array('category_id' => $category->getId(), 'company' => 'Sensio Labs', 'position' => 'Senior Tester', 'location' => 'Paris, France', 'description' => 'Testing is fun', 'how_to_apply' => 'Send e-Mail', 'email' => '*****@*****.**', 'token' => rand(1111, 9999), 'is_activated' => true), $defaults), BasePeer::TYPE_FIELDNAME);
    return $job;
}
function create_job($defaults = array())
{
    static $category = null;
    if (is_null($category)) {
        $category = Doctrine::getTable('JobeetCategory')->createQuery()->limit(1)->fetchOne();
    }
    $job = new JobeetJob();
    $job->fromArray(array_merge(array('category_id' => $category->getId(), 'company' => 'Sensio Labs', 'position' => 'Senior Tester', 'location' => 'Paris, France', 'description' => 'Testing is fun', 'how_to_apply' => 'Send e-Mail', 'email' => '*****@*****.**', 'token' => rand(1111, 9999), 'is_activated' => true), $defaults));
    return $job;
}
Esempio n. 4
0
 public function executeNew(sfWebRequest $request)
 {
     $job = new JobeetJob();
     $job->setType('full-time');
     $this->form = new JobeetJobForm($job);
 }
Esempio n. 5
0
 /**
  * Adds an object to the instance pool.
  *
  * Propel keeps cached copies of objects in an instance pool when they are retrieved
  * from the database.  In some cases -- especially when you override doSelect*()
  * methods in your stub classes -- you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by doSelect*()
  * and retrieveByPK*() calls.
  *
  * @param      JobeetJob $value A JobeetJob object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool(JobeetJob $obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = (string) $obj->getId();
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }