当前位置: 首页>>代码示例>>PHP>>正文


PHP Categorie::all方法代码示例

本文整理汇总了PHP中Categorie::all方法的典型用法代码示例。如果您正苦于以下问题:PHP Categorie::all方法的具体用法?PHP Categorie::all怎么用?PHP Categorie::all使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Categorie的用法示例。


在下文中一共展示了Categorie::all方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: action_index

 public function action_index()
 {
     $categories = Categorie::all();
     $view = View::make('home.index')->with('title', 'REMARKET')->with('categories', $categories);
     return $view;
 }
开发者ID:angmark0309,项目名称:remarket,代码行数:6,代码来源:home.php

示例2: Categorie

<?php

require_once 'lib/Twig/Autoloader.php';
require_once "model/categorie.php";
session_start();
$categories = new Categorie();
Twig_Autoloader::register();
$loader = new Twig_Loader_Filesystem('templates');
$twig = new Twig_Environment($loader, array('defaultContext' => array('media_url' => $mediaUrl, 'url_root' => $documentRoot . "/", 'session' => $_SESSION, 'cetegories_list' => $categories->all())));
开发者ID:rfloriano,项目名称:rfloriano-treichel-bookstore,代码行数:9,代码来源:defaults.php

示例3: action_edit

 public function action_edit($id)
 {
     if (Auth::check() && Session::has('id')) {
         $account = Account::find(Session::get('id'));
         if (Input::has('title') && Input::has('category_id') && Input::has('price') && Input::has('date_available') && Input::has('date_unavailable')) {
             $listing = Listing::find($id);
             $location;
             if (Input::has('location_id')) {
                 $location = Location::find(Input::get('location_id'));
             }
             if (Input::has('address') || Input::has('city') || Input::has('postal_code')) {
                 $location = new Location();
                 Input::has('address') ? $location->address = strip_tags(Input::get('address')) : ($location->address = '');
                 Input::has('city') ? $location->city = Input::get('city') : ($location->city = '');
                 Input::has('postal_code') ? $location->postal_code = strip_tags(Input::get('postal_code')) : ($location->postal_code = '');
                 $location->account_id = $account->id;
                 $location->save();
                 $location = Location::where_address_and_city_and_postal_code(Input::get('address'), Input::get('city'), Input::get('postal_code'))->first();
             }
             $listing->title = strip_tags(Input::get('title'));
             $listing->description = Input::has('description') ? strip_tags(Input::get('description')) : '';
             $listing->category_id = Input::get('category_id');
             $listing->price = Input::get('price');
             $date_available = Input::get('date_available');
             $date_unavailable = Input::get('date_unavailable');
             $listing->date_available = $date_available . "-00-00-00";
             $listing->date_unavailable = $date_unavailable . "-00-00-00";
             $listing->location_id = $location->id;
             $listing->timestamp();
             $listing->save();
             // var_dump($_POST);
             // var_dump($listing);
             return Redirect::to("/account/");
         }
         $account = Account::find(Session::get('id'));
         $listing = Listing::find($id);
         $location = Location::find($listing->location_id);
         $locations = $account->locations()->get();
         $categories = Categorie::all();
         $price = $listing->price;
         if ($location->account_id == $account->id) {
             // var_dump($categories);
             $view = View::make('listing.edit.index')->with('title', 'Edit Listing')->with('listing', $listing)->with('location', $location)->with('locations', $locations)->with('account', $account)->with('categories', $categories);
             return $view;
         } else {
             return Response::error('403');
         }
     } else {
         return Redirect::to('/');
     }
 }
开发者ID:angmark0309,项目名称:remarket,代码行数:51,代码来源:listing.php

示例4: index

function index()
{
    global $twig;
    $categories = new Categorie();
    echo $twig->render('categorie_list.html', array('categories' => $categories->all()));
}
开发者ID:rfloriano,项目名称:rfloriano-treichel-bookstore,代码行数:6,代码来源:categories.php


注:本文中的Categorie::all方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。