/**
  * Store a newly created resource in storage.
  *
  * @return Response
  */
 public function store(StudyProgramRequest $request)
 {
     $data = $request->all();
     $study_program = new StudyProgram();
     $study_program->fromArray($data);
     $study_program->save();
     flash()->success("ADDED");
     session(['attribute' => \Lang::get('general.STUDY_PROGRAM')]);
     return redirect($this->main_page);
 }
Exemplo n.º 2
0
 /**
  * @param ChildStudyProgram $studyProgram The ChildStudyProgram object to add.
  */
 protected function doAddStudyProgram(ChildStudyProgram $studyProgram)
 {
     $this->collStudyPrograms[] = $studyProgram;
     $studyProgram->setCourse($this);
 }
Exemplo n.º 3
0
 /**
  * Exclude object from result
  *
  * @param   ChildStudyProgram $studyProgram Object to remove from the list of results
  *
  * @return $this|ChildStudyProgramQuery The current query, for fluid interface
  */
 public function prune($studyProgram = null)
 {
     if ($studyProgram) {
         $this->addCond('pruneCond0', $this->getAliasedColName(StudyProgramTableMap::COL_SUBJECT_ID), $studyProgram->getSubjectId(), Criteria::NOT_EQUAL);
         $this->addCond('pruneCond1', $this->getAliasedColName(StudyProgramTableMap::COL_COURSE_ID), $studyProgram->getCourseId(), Criteria::NOT_EQUAL);
         $this->combine(array('pruneCond0', 'pruneCond1'), Criteria::LOGICAL_OR);
     }
     return $this;
 }
Exemplo n.º 4
0
 /**
  * Filter the query by a related \App\Models\StudyProgram object
  *
  * @param \App\Models\StudyProgram|ObjectCollection $studyProgram the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildSubjectQuery The current query, for fluid interface
  */
 public function filterByStudyProgram($studyProgram, $comparison = null)
 {
     if ($studyProgram instanceof \App\Models\StudyProgram) {
         return $this->addUsingAlias(SubjectTableMap::COL_ID, $studyProgram->getSubjectId(), $comparison);
     } elseif ($studyProgram instanceof ObjectCollection) {
         return $this->useStudyProgramQuery()->filterByPrimaryKeys($studyProgram->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByStudyProgram() only accepts arguments of type \\App\\Models\\StudyProgram or Collection');
     }
 }
 /**
  * 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 you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by find*()
  * and findPk*() calls.
  *
  * @param \App\Models\StudyProgram $obj A \App\Models\StudyProgram object.
  * @param string $key             (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool($obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if (null === $key) {
             $key = serialize(array((string) $obj->getSubjectId(), (string) $obj->getCourseId()));
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }