/**
  * Returns a new ClientearchivoQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param   ClientearchivoQuery|Criteria $criteria Optional Criteria to build the query from
  *
  * @return ClientearchivoQuery
  */
 public static function create($modelAlias = null, $criteria = null)
 {
     if ($criteria instanceof ClientearchivoQuery) {
         return $criteria;
     }
     $query = new ClientearchivoQuery(null, null, $modelAlias);
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
示例#2
0
 public function filesdropzonedeleteAction()
 {
     $request = $this->getRequest();
     if ($request->isPost()) {
         $post_data = $request->getPost();
         //obtnemos el id del archivo
         $id = $post_data['id'];
         $entity = \ClientearchivoQuery::create()->findPk($id);
         //Eliminamos del sistema de archivos
         $taget_file = $_SERVER['DOCUMENT_ROOT'] . $entity->getClientearchivoArchivo();
         unlink($taget_file);
         //Eliminamos de la base de datos
         $entity->delete();
         return $this->getResponse()->setContent(json_encode(true));
     }
 }
示例#3
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(ClientearchivoPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
     }
     $con->beginTransaction();
     try {
         $deleteQuery = ClientearchivoQuery::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;
     }
 }
示例#4
0
 /**
  * Returns the number of related Clientearchivo objects.
  *
  * @param Criteria $criteria
  * @param boolean $distinct
  * @param PropelPDO $con
  * @return int             Count of related Clientearchivo objects.
  * @throws PropelException
  */
 public function countClientearchivos(Criteria $criteria = null, $distinct = false, PropelPDO $con = null)
 {
     $partial = $this->collClientearchivosPartial && !$this->isNew();
     if (null === $this->collClientearchivos || null !== $criteria || $partial) {
         if ($this->isNew() && null === $this->collClientearchivos) {
             return 0;
         }
         if ($partial && !$criteria) {
             return count($this->getClientearchivos());
         }
         $query = ClientearchivoQuery::create(null, $criteria);
         if ($distinct) {
             $query->distinct();
         }
         return $query->filterByCliente($this)->count($con);
     }
     return count($this->collClientearchivos);
 }