Ejemplo n.º 1
0
include "inc/includes.php";
require_once "inc/Restaurant.php";
require_once "inc/Cuisine.php";
require_once "inc/Filter.php";
global $USER_LOGGED_IN;
global $USERID;
// Generate the default recommendations if user is logged in.
if ($USER_LOGGED_IN) {
    $recommendation = new Recommendation($USERID);
    $filter = new Filter();
    $filter->setCuisine(7);
    $result = $recommendation->getFilteredWithCategory(2, $filter);
    while ($reco = mysql_fetch_array($result)) {
        $restaurant = new Restaurant($reco['resId']);
        echo $restaurant->getName() . "," . $restaurant->getAddress();
        $cuisines = $restaurant->getCategories();
        foreach ($cuisines as $cuisine) {
            echo $cuisine->getName();
        }
    }
}
?>
<html>
  <body>
  <?php 
getFacebookWidget();
?>
  </body>
</html>
Ejemplo n.º 2
0
		</div>
		<div>
			<div class="checkbox-wrapper"><input type="checkbox" name="delievery" value="true" /> Home Delievery</div>
			<div class="checkbox-wrapper"><input type="checkbox" name="pureveg" value="true" /> Pure Vegetarian</div>
			<div class="checkbox-wrapper"><input type="checkbox" name="reservation" value="true" /> Takes Reservations</div>
		</div>
		<div class="single-block">
			<a href="#" class="button black">Filter</a>
		</div>
	</div>
</div>
<?php 
while ($reco = mysql_fetch_array($results)) {
    $restaurant = new Restaurant($reco['resId']);
    $cuisines = $restaurant->getCuisines();
    $categories = $restaurant->getCategories();
    ?>
<div class="item normal" data-order='1'>

	<!--BEGIN .hentry -->
	<div class="hentry">

		<!--BEGIN .featured-image -->
		<div class="featured-image">
				
			<a href="#"><img src="http://demo.designerthemes.com/construct/files/2011/04/3995799932_8fed63e2fc_o1-300x180.jpg" width="300" height="180" alt="" /></a>
			
		<!--END .featured-image -->
		</div>
	<span class="meta-category icon-video">
		<?php 
Ejemplo n.º 3
0
        if ($counter++ != 0) {
            echo ", ";
        }
        ?>
<span class="meta-category"><?php 
        echo $cuisine->getName();
        ?>
</span><?php 
    }
    ?>
				<!--BEGIN .featured-post-content -->
				<div class="featured-post-content">
					<div class="featued-single-block">
						<?php 
    $counter = 0;
    foreach ($restaurant->getCategories() as $category) {
        if ($couter++ != 0) {
            echo ", ";
        }
        ?>
<span class="category">
								<a href="restaurant.php?id=<?php 
        echo $category->getCategoryId();
        ?>
" label="get recommendations for <?php 
        echo $category->getName();
        ?>
"><?php 
        echo $category->getName();
        ?>
</a></span><?php