/**
  * Returns a new Slider_maeQuery object.
  *
  * @param     string $modelAlias The alias of a model in the query
  * @param     Criteria $criteria Optional Criteria to build the query from
  *
  * @return    Slider_maeQuery
  */
 public static function create($modelAlias = null, $criteria = null)
 {
     if ($criteria instanceof Slider_maeQuery) {
         return $criteria;
     }
     $query = new Slider_maeQuery();
     if (null !== $modelAlias) {
         $query->setModelAlias($modelAlias);
     }
     if ($criteria instanceof Criteria) {
         $query->mergeWith($criteria);
     }
     return $query;
 }
 /**
  * Removes this object from datastore and sets delete attribute.
  *
  * @param      PropelPDO $con
  * @return     void
  * @throws     PropelException
  * @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(Slider_maePeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
     }
     $con->beginTransaction();
     try {
         $deleteQuery = Slider_maeQuery::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;
     }
 }
 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this Slider_categ is new, it will return
  * an empty collection; or if this Slider_categ has previously
  * been saved, it will retrieve related Slider_maes 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 Slider_categ.
  *
  * @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     PropelCollection|array Slider_mae[] List of Slider_mae objects
  */
 public function getSlider_maesJoinLibro($criteria = null, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $query = Slider_maeQuery::create(null, $criteria);
     $query->joinWith('Libro', $join_behavior);
     return $this->getSlider_maes($query, $con);
 }
Example #4
0
error_reporting(E_ALL);
ini_set("display_errors", 1);
include_once "data/config.php";
$libros = LibroQuery::create()->limit(5)->find();
$listaLibros = "";
foreach ($libros as $reg) {
    $listaLibros .= "<li>" . $reg->getNombre() . "</li>";
}
//$sliderItem = Slider_maeQuery::create()->findOneById(1);
//$sliderItem->getLibro()->getImage();
//$sliderItem->getLibro()->getNombre();
//Armo los slider
$categoriasSlider = Slider_categQuery::create()->limit(4)->find();
$sliders = "";
foreach ($categoriasSlider as $categ) {
    $sliderMae = Slider_maeQuery::create()->filterById_categoria($categ->getId())->find();
    $sliders .= '<div class="col-md-3">
                    <div><!-- class="box box-solid"-->
                        <div class="box-header">
                            <h3 class="box-title">' . $categ->getDescrp() . '</h3>
                        </div>
                        <div class="box-body">
                            <div id="carousel-example-generic-' . $categ->getId() . '" class="carousel slide" data-ride="carousel">
                                <ol class="carousel-indicators">
                    ';
    $pos = 0;
    $active = ' class="active"';
    foreach ($sliderMae as $sliderItem) {
        if ($pos != 0) {
            $active = "";
        }