/**
  * Get the associated ChildUser object
  *
  * @param  ConnectionInterface $con Optional Connection object.
  * @return ChildUser The associated ChildUser object.
  * @throws PropelException
  */
 public function getassignedBy(ConnectionInterface $con = null)
 {
     if ($this->aassignedBy === null && $this->assigned_by !== null) {
         $this->aassignedBy = ChildUserQuery::create()->findPk($this->assigned_by, $con);
         /* The following can be used additionally to
               guarantee the related object contains a reference
               to this object.  This level of coupling may, however, be
               undesirable since it could result in an only partially populated collection
               in the referenced object.
               $this->aassignedBy->addAssignedRoleGlobalsRelatedByAssignedBy($this);
            */
     }
     return $this->aassignedBy;
 }
Exemple #2
0
 /**
  * Builds a Criteria object containing the primary key for this object.
  *
  * Unlike buildCriteria() this method includes the primary key values regardless
  * of whether or not they have been modified.
  *
  * @throws LogicException if no primary key is defined
  *
  * @return Criteria The Criteria object containing value(s) for primary key(s).
  */
 public function buildPkeyCriteria()
 {
     $criteria = ChildUserQuery::create();
     $criteria->add(UserTableMap::COL_ID, $this->id);
     return $criteria;
 }
 /**
  * Get the associated ChildUser object
  *
  * @param  ConnectionInterface $con Optional Connection object.
  * @return ChildUser The associated ChildUser object.
  * @throws PropelException
  */
 public function getuser(ConnectionInterface $con = null)
 {
     if ($this->auser === null && $this->user_id !== null) {
         $this->auser = ChildUserQuery::create()->findPk($this->user_id, $con);
         /* The following can be used additionally to
               guarantee the related object contains a reference
               to this object.  This level of coupling may, however, be
               undesirable since it could result in an only partially populated collection
               in the referenced object.
               $this->auser->addAuthTokens($this);
            */
     }
     return $this->auser;
 }
 /**
  * Returns a new ChildUserQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param     Criteria $criteria Optional Criteria to build the query from
  *
  * @return ChildUserQuery
  */
 public static function create($modelAlias = null, Criteria $criteria = null)
 {
     if ($criteria instanceof ChildUserQuery) {
         return $criteria;
     }
     $query = new ChildUserQuery();
     if (null !== $modelAlias) {
         $query->setModelAlias($modelAlias);
     }
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
Exemple #5
0
require "../propel/conf/config.php";
session_start();
$app = new \Slim\Slim(array('view' => new \Slim\Views\Twig()));
$checkAuth = function ($roles = array()) use($app) {
    return function () use($app, $roles) {
        if ($app->user) {
            //todo: check roles
        } else {
            $app->redirect('/login?forbidden=true');
        }
    };
};
$app->hook('slim.before.dispatch', function () use($app) {
    //set up user if exists
    if (isset($_SESSION['user_id']) && $_SESSION['user_id']) {
        $user = \SpoilerWiki\UserQuery::create()->findPK($_SESSION['user_id']);
        $app->user = $user;
        $app->view()->appendData(array("user" => $user->toArray()));
    } else {
        $app->user = false;
        $app->view()->appendData(array("user" => false));
    }
});
$app->view->setTemplatesDirectory('../templates');
$app->get('/', function () use($app) {
    $canonList = \SpoilerWiki\Canon::fetchAll();
    $app->view()->display('index.twig', array("canonList" => $canonList));
});
$app->get('/series/:id', function ($seriesId) use($app) {
    $app->view()->display('series.twig', array());
});
 /**
  * Performs an INSERT on the database, given a User or Criteria object.
  *
  * @param mixed               $criteria Criteria or User object containing data that is used to create the INSERT statement.
  * @param ConnectionInterface $con the ConnectionInterface connection to use
  * @return mixed           The new primary key.
  * @throws PropelException Any exceptions caught during processing will be
  *                         rethrown wrapped into a PropelException.
  */
 public static function doInsert($criteria, ConnectionInterface $con = null)
 {
     if (null === $con) {
         $con = Propel::getServiceContainer()->getWriteConnection(UserTableMap::DATABASE_NAME);
     }
     if ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
         // rename for clarity
     } else {
         $criteria = $criteria->buildCriteria();
         // build Criteria from User object
     }
     if ($criteria->containsKey(UserTableMap::COL_ID) && $criteria->keyContainsValue(UserTableMap::COL_ID)) {
         throw new PropelException('Cannot insert a value for auto-increment primary key (' . UserTableMap::COL_ID . ')');
     }
     // Set the correct dbName
     $query = UserQuery::create()->mergeWith($criteria);
     // use transaction because $criteria could contain info
     // for more than one table (I guess, conceivably)
     return $con->transaction(function () use($con, $query) {
         return $query->doInsert($con);
     });
 }