Exemplo n.º 1
0
 /**
  * Returns a new signInQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param   signInQuery|Criteria $criteria Optional Criteria to build the query from
  *
  * @return signInQuery
  */
 public static function create($modelAlias = null, $criteria = null)
 {
     if ($criteria instanceof signInQuery) {
         return $criteria;
     }
     $query = new signInQuery(null, null, $modelAlias);
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
Exemplo n.º 2
0
function signins_all()
{
    $beginOfDay = strtotime("midnight", time());
    $signins = signInQuery::create()->find();
    return process_signins_resultset($signins);
}
Exemplo n.º 3
0
        render_json(signins_today());
    });
    $app->get('/all', function () use($app) {
        if (!require_admin()) {
            return;
        }
        render_json(signins_all());
    });
    $app->get('/reasons', function () use($app) {
        $reasons = signInReasonQuery::create()->find();
        render_json($reasons->toArray());
    });
    $app->get('/stats', function () use($app) {
        $beginOfDay = strtotime("midnight", time());
        $stats = array();
        $stats['signinsToday'] = signInQuery::create()->filterByCreatedAt(array('min' => $beginOfDay))->count();
        $stats['uniqueUsers'] = UserQuery::create()->count();
        render_json($stats);
    });
});
$app->group('/users', function () use($app) {
    $app->get('/list', function () use($app) {
        if (!require_admin()) {
            return;
        }
        render_json(all_users()->toArray());
    });
    $app->get('/skills/:netid', function ($netid) use($app) {
        render_json(skills_netid($netid));
    });
    $app->post('/skills/:netid', function ($netid) use($app) {
Exemplo n.º 4
0
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this signInReason is new, it will return
  * an empty collection; or if this signInReason has previously
  * been saved, it will retrieve related signIns from storage.
  *
  * This method is protected by default in order to keep the public
  * api reasonable.  You can provide public methods for those you
  * actually need in signInReason.
  *
  * @param Criteria $criteria optional Criteria object to narrow the query
  * @param PropelPDO $con optional connection object
  * @param string $join_behavior optional join type to use (defaults to Criteria::LEFT_JOIN)
  * @return PropelObjectCollection|signIn[] List of signIn objects
  */
 public function getsignInsJoinUser($criteria = null, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $query = signInQuery::create(null, $criteria);
     $query->joinWith('User', $join_behavior);
     return $this->getsignIns($query, $con);
 }
Exemplo n.º 5
0
 /**
  * Removes this object from datastore and sets delete attribute.
  *
  * @param PropelPDO $con
  * @return void
  * @throws PropelException
  * @throws Exception
  * @see        BaseObject::setDeleted()
  * @see        BaseObject::isDeleted()
  */
 public function delete(PropelPDO $con = null)
 {
     if ($this->isDeleted()) {
         throw new PropelException("This object has already been deleted.");
     }
     if ($con === null) {
         $con = Propel::getConnection(signInPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
     }
     $con->beginTransaction();
     try {
         $deleteQuery = signInQuery::create()->filterByPrimaryKey($this->getPrimaryKey());
         $ret = $this->preDelete($con);
         if ($ret) {
             $deleteQuery->delete($con);
             $this->postDelete($con);
             $con->commit();
             $this->setDeleted(true);
         } else {
             $con->commit();
         }
     } catch (Exception $e) {
         $con->rollBack();
         throw $e;
     }
 }