Ejemplo n.º 1
0
 /**
  * Implementation for 'GET' method for Rest API
  *
  * @param  mixed $folderUid Primary key
  *
  * @return array $result Returns array within multiple records or a single record depending if
  *                       a single selection was requested passing id(s) as param
  */
 protected function get($folderUid = null)
 {
     $result = array();
     try {
         $noArguments = true;
         $argumentList = func_get_args();
         foreach ($argumentList as $arg) {
             if (!is_null($arg)) {
                 $noArguments = false;
             }
         }
         if ($noArguments) {
             $criteria = new Criteria('workflow');
             $criteria->addSelectColumn(AppFolderPeer::FOLDER_UID);
             $criteria->addSelectColumn(AppFolderPeer::FOLDER_PARENT_UID);
             $criteria->addSelectColumn(AppFolderPeer::FOLDER_NAME);
             $criteria->addSelectColumn(AppFolderPeer::FOLDER_CREATE_DATE);
             $criteria->addSelectColumn(AppFolderPeer::FOLDER_UPDATE_DATE);
             $dataset = AppEventPeer::doSelectRS($criteria);
             $dataset->setFetchmode(ResultSet::FETCHMODE_ASSOC);
             while ($dataset->next()) {
                 $result[] = $dataset->getRow();
             }
         } else {
             $record = AppFolderPeer::retrieveByPK($folderUid);
             if ($record) {
                 $result = $record->toArray(BasePeer::TYPE_FIELDNAME);
             } else {
                 $paramValues = "";
                 foreach ($argumentList as $arg) {
                     $paramValues .= strlen($paramValues) ? ', ' : '';
                     if (!is_null($arg)) {
                         $paramValues .= "{$arg}";
                     } else {
                         $paramValues .= "NULL";
                     }
                 }
                 throw new RestException(417, "table AppFolder ({$paramValues})");
             }
         }
     } catch (RestException $e) {
         throw new RestException($e->getCode(), $e->getMessage());
     } catch (Exception $e) {
         throw new RestException(412, $e->getMessage());
     }
     return $result;
 }
Ejemplo n.º 2
0
 /**
  * Populates the object using an array.
  *
  * This is particularly useful when populating an object from one of the
  * request arrays (e.g. $_POST).  This method goes through the column
  * names, checking to see whether a matching key exists in populated
  * array. If so the setByName() method is called for that column.
  *
  * You can specify the key type of the array by additionally passing one
  * of the class type constants TYPE_PHPNAME, TYPE_COLNAME, TYPE_FIELDNAME,
  * TYPE_NUM. The default key type is the column's phpname (e.g. 'authorId')
  *
  * @param      array  $arr     An array to populate the object from.
  * @param      string $keyType The type of keys the array uses.
  * @return     void
  */
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = AppFolderPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setFolderUid($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setFolderParentUid($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setFolderName($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setFolderCreateDate($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setFolderUpdateDate($arr[$keys[4]]);
     }
 }
Ejemplo n.º 3
0
 <?php 
try {
    $form = $_POST['form'];
    $FolderUid = $form['FOLDER_UID'];
    require_once "classes/model/AppFolder.php";
    //if exists the row in the database propel will update it, otherwise will insert.
    $tr = AppFolderPeer::retrieveByPK($FolderUid);
    if (is_object($tr) && get_class($tr) == 'AppFolder') {
        $tr->delete();
    }
    G::Header('location: appFolderList');
} catch (Exception $e) {
    $G_PUBLISH = new Publisher();
    $aMessage['MESSAGE'] = $e->getMessage();
    $G_PUBLISH->AddContent('xmlform', 'xmlform', 'login/showMessage', '', $aMessage);
    G::RenderPage('publish', 'blank');
}
Ejemplo n.º 4
0
 public function remove ($FolderUid, $rootfolder)
 {
     $oCriteria = new Criteria( 'workflow' );
     $oCriteria->add( AppFolderPeer::FOLDER_UID, $FolderUid );
     AppFolderPeer::doDelete( $oCriteria );
 }
Ejemplo n.º 5
0
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      Connection $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(self::DATABASE_NAME);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria();
         $criteria->add(AppFolderPeer::FOLDER_UID, $pks, Criteria::IN);
         $objs = AppFolderPeer::doSelect($criteria, $con);
     }
     return $objs;
 }