本文整理汇总了PHP中Banner::where方法的典型用法代码示例。如果您正苦于以下问题:PHP Banner::where方法的具体用法?PHP Banner::where怎么用?PHP Banner::where使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Banner
的用法示例。
在下文中一共展示了Banner::where方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: index
/**
* Display a listing of the resource.
*
* @return Response
*/
public function index()
{
$authuser = Auth::user();
//$listaDePost = Proveedor::paginate(15);
$Banners = Banner::where('usuario_id', $authuser->id)->orderBy('seccion', 'asc')->paginate(10);
return View::make('vistausuario.pages.banners.index')->with(array('Banners' => $Banners, 'usuarioimg' => $authuser->imagen, 'usuarionombre' => $authuser->nombre, 'usuarioid' => $authuser->id));
}
示例2: directorio
public function directorio($directorioCategoria)
{
$anuncios = Anuncio::all();
$categoriasClasif = ClasificadoCategoria::all();
if ($directorioCategoria == 'all') {
$listaClasificadosPremium = Clasificado::where('premium', '=', 1)->where('habilitar', '=', 1)->orderBy('fecha_publicacion', 'DESC')->get();
$listaClasificadosNormales = Clasificado::where('premium', '=', 0)->where('habilitar', '=', 1)->orderBy('fecha_publicacion', 'DESC')->get();
} else {
$categoria = ClasificadoCategoria::find($directorioCategoria);
//$clasificados = $categoria->clasificados;
$listaClasificadosPremium = Clasificado::where('categoria_id', '=', $directorioCategoria)->where('premium', '=', 1)->where('habilitar', '=', 1)->orderBy('fecha_publicacion', 'DESC')->get();
$listaClasificadosNormales = Clasificado::where('categoria_id', '=', $directorioCategoria)->where('premium', '=', 0)->where('habilitar', '=', 1)->orderBy('fecha_publicacion', 'DESC')->get();
}
$bannersizquierda = Banner::where('seccion', '=', 'CLASIFICADOS-IZQUIERDA')->where('habilitar', '=', 1)->orderBy('id', 'asc')->get();
$bannersderecha = Banner::where('seccion', '=', 'CLASIFICADOS-DERECHA')->where('habilitar', '=', 1)->orderBy('id', 'asc')->get();
$bannersindexarriba = Banner::where('seccion', '=', 'INDEX-ARRIBA')->where('habilitar', '=', 1)->orderBy('id', 'asc')->get();
$rolusuarioLogueado = '';
$mailusuarioLogueado = '';
$nombreusuarioLogueado = '';
if (Auth::check()) {
$authuser = Auth::user();
$usu = Usuario::find($authuser->id);
$mailusuarioLogueado = $authuser->email;
$nombreusuarioLogueado = $authuser->nombre;
$rolusuarioLogueado = DB::table('usuario_tiene_rol2')->where('usuario_id', '=', $authuser->id)->first();
$rolusuarioLogueado = UsuarioRol::find($rolusuarioLogueado->rol_id)->rol;
}
return View::make('index.directorioClasificados')->with(array('anuncios' => $anuncios, 'categoriasClasif' => $categoriasClasif, 'listaClasificadosPremium' => $listaClasificadosPremium, 'directorioCat' => $directorioCategoria == 'all' ? 'Todos los clasificados' : $categoria->categoria, 'listaClasificadosNormales' => $listaClasificadosNormales, 'bannersizquierda' => $bannersizquierda, 'bannersderecha' => $bannersderecha, 'bannersindexarriba' => $bannersindexarriba, 'username' => $mailusuarioLogueado, 'nameuser' => $nombreusuarioLogueado, 'roluser' => $rolusuarioLogueado));
//
}
示例3: directorio
public function directorio($directorioCategoria)
{
$rolusuarioLogueado = '';
$mailusuarioLogueado = '';
$nombreusuarioLogueado = '';
if (Auth::check()) {
$authuser = Auth::user();
$usu = Usuario::find($authuser->id);
$mailusuarioLogueado = $authuser->email;
$nombreusuarioLogueado = $authuser->nombre;
$rolusuarioLogueado = DB::table('usuario_tiene_rol2')->where('usuario_id', '=', $authuser->id)->first();
$rolusuarioLogueado = UsuarioRol::find($rolusuarioLogueado->rol_id)->rol;
}
$anuncios = Anuncio::all();
$bannersizquierda = DB::table('banners')->whereRaw("seccion='DIRECTORIO-IZQUIERDA' and habilitar=1")->orderBy('id', 'asc')->get();
$bannersderecha = DB::table('banners')->whereRaw("seccion='DIRECTORIO-DERECHA' and habilitar=1")->orderBy('id', 'asc')->get();
$bannersindexarriba = Banner::where('seccion', '=', 'INDEX-ARRIBA')->where('habilitar', '=', 1)->orderBy('id', 'asc')->get();
$categorias = DB::table('proveedor_tipo')->get();
$listaProveedores = DB::select('select * from proveedor_tipo,proveedores,proveedor_detalle where proveedor_tipo.id=proveedores.proveedor_tipo_idproveedor_tipo and proveedores.id=proveedor_detalle.proveedores_idproveedor');
if ($directorioCategoria == 'all') {
$listaCategoria = DB::select("select * from proveedor_tipo,proveedores,proveedor_detalle where proveedor_tipo.id=proveedores.proveedor_tipo_idproveedor_tipo and proveedores.id=proveedor_detalle.proveedores_idproveedor");
} else {
$listaCategoria = DB::select("select * from proveedor_tipo,proveedores,proveedor_detalle where proveedor_tipo.id=proveedores.proveedor_tipo_idproveedor_tipo and proveedores.id=proveedor_detalle.proveedores_idproveedor and proveedor_tipo.tipo='{$directorioCategoria}'");
}
//$proveedores = DB::table('proveedores')->where('nombre_usuario', '=', "$nombre_usuario")->first();
//$proveedores_detalle = Proveedor_detalle::where('proveedores_idproveedor', '=', $proveedores->id)->first();
//$galeria = DB::table('proveedor_galeria')->where('proveedores_idproveedor', '=', $proveedores->id)->get();
//return View::make('index.index')->with(array('proveedores'=>$proveedores,'proveedores_detalle'=>$proveedores_detalle,'galeria'=>$galeria));
return View::make('index.directorio')->with(array('bannersizquierda' => $bannersizquierda, 'bannersderecha' => $bannersderecha, 'categorias' => $categorias, 'listaProveedores' => $listaProveedores, 'directorioCategoria' => $directorioCategoria, 'listaCategoria' => $listaCategoria, 'username' => $mailusuarioLogueado, 'nameuser' => $nombreusuarioLogueado, 'roluser' => $rolusuarioLogueado, 'anuncios' => $anuncios, 'bannersindexarriba' => $bannersindexarriba));
//
}
示例4: index
public function index()
{
$title = Lang::get('admin/news/title.blog_management');
$news = $this->news;
$news = $news->paginate(10);
$big_news = \BigNews::first();
$big_news = is_null($big_news) ? $this->news->first() : $big_news->news;
$banners = \Banner::where('view_in_news', true)->take(2)->get();
return View::make('news/index', compact('news', 'big_news', 'title', 'banners'));
}
示例5: verclasif
public function verclasif($idclasificado)
{
$anuncios = Anuncio::all();
$categoriasClasif = ClasificadoCategoria::all();
$clasf = Clasificado::find($idclasificado);
$rolusuarioLogueado = '';
$mailusuarioLogueado = '';
$nombreusuarioLogueado = '';
if (Auth::check()) {
$authuser = Auth::user();
$usu = Usuario::find($authuser->id);
$mailusuarioLogueado = $authuser->email;
$nombreusuarioLogueado = $authuser->nombre;
$rolusuarioLogueado = DB::table('usuario_tiene_rol2')->where('usuario_id', '=', $authuser->id)->first();
$rolusuarioLogueado = UsuarioRol::find($rolusuarioLogueado->rol_id)->rol;
}
$bannersizquierda = Banner::where('seccion', '=', 'CLASIFICADOS-IZQUIERDA')->where('habilitar', '=', 1)->orderBy('id', 'asc')->get();
$bannersderecha = Banner::where('seccion', '=', 'CLASIFICADOS-DERECHA')->where('habilitar', '=', 1)->orderBy('id', 'asc')->get();
$bannersindexarriba = Banner::where('seccion', '=', 'INDEX-ARRIBA')->where('habilitar', '=', 1)->orderBy('id', 'asc')->get();
$latitud_ens = "31.865092739341954";
$longitud_ens = "-116.62914315185549";
return View::make('index.clasificadoDetalle')->with(array('anuncios' => $anuncios, 'categoriasClasif' => $categoriasClasif, 'clasificado' => $clasf, 'bannersizquierda' => $bannersizquierda, 'bannersderecha' => $bannersderecha, 'username' => $mailusuarioLogueado, 'nameuser' => $nombreusuarioLogueado, 'roluser' => $rolusuarioLogueado, 'bannersindexarriba' => $bannersindexarriba, 'latitud_ens' => $latitud_ens, 'longitud_ens' => $longitud_ens));
//
}
示例6: mostrarEventos
public function mostrarEventos()
{
//$Posts = DB::table('blog')->orderBy('id','desc')->paginate(2);
//$bannersizquierda = DB::table('banners')->where('seccion', '=', 'BLOG-IZQUIERDA','AND')->where('habilitar', '=', '1')->orderBy('id','asc')->get();
$bannersizquierda = Banner::where('seccion', '=', 'EVENTOS-IZQUIERDA')->where('habilitar', '=', '1')->orderBy('id', 'asc')->get();
$bannersderecha = Banner::where('seccion', '=', 'EVENTOS-DERECHA')->where('habilitar', '=', '1')->orderBy('id', 'asc')->get();
$bannersindexarriba = Banner::where('seccion', '=', 'INDEX-ARRIBA')->where('habilitar', '=', 1)->orderBy('id', 'asc')->get();
$eventos = Evento::orderBy('fecha', 'desc')->paginate(5);
$anuncios = Anuncio::all();
$rolusuarioLogueado = '';
$mailusuarioLogueado = '';
$nombreusuarioLogueado = '';
if (Auth::check()) {
$authuser = Auth::user();
$usu = Usuario::find($authuser->id);
$mailusuarioLogueado = $authuser->email;
$nombreusuarioLogueado = $authuser->nombre;
$rolusuarioLogueado = DB::table('usuario_tiene_rol2')->where('usuario_id', '=', $authuser->id)->first();
$rolusuarioLogueado = UsuarioRol::find($rolusuarioLogueado->rol_id)->rol;
}
return View::make('index.eventos')->with(array('bannersizquierda' => $bannersizquierda, 'bannersderecha' => $bannersderecha, 'eventos' => $eventos, 'anuncios' => $anuncios, 'username' => $mailusuarioLogueado, 'nameuser' => $nombreusuarioLogueado, 'roluser' => $rolusuarioLogueado, 'bannersindexarriba' => $bannersindexarriba));
//
}
示例7: mostrarProximamente
public function mostrarProximamente()
{
$anuncios = Anuncio::all();
$bannersindexarriba = Banner::where('seccion', '=', 'INDEX-ARRIBA')->where('habilitar', '=', 1)->orderBy('id', 'asc')->get();
//return View::make('index.index')->with(array('proveedores'=>$proveedores,'proveedores_detalle'=>$proveedores_detalle,'galeria'=>$galeria));
return View::make('index.proximamente')->with(array('anuncios' => $anuncios, 'bannersindexarriba' => $bannersindexarriba));
//
}
示例8: slideShow
public static function slideShow()
{
$banners = Banner::where("active", "=", 1)->orderBy('order')->get();
return $banners;
}
示例9: update_banner
public function update_banner()
{
try {
$_arData = array();
$id = Input::get("id");
$banner_title = Input::get("banner_title");
$banner_description = Input::get("banner_description");
$banner_order = Input::get("banner_order");
$_userData = Session::get('login');
$destinationPath_Banner = 'asserts/images/Banner';
$banner_images = null;
if (Input::hasfile("file")) {
$file_Banner = Input::file("file");
$banner_images = $file_Banner->getClientOriginalName();
$upload_success_banner = $file_Banner->move($destinationPath_Banner, $banner_images);
}
$_arData = array('banner_title' => $banner_title, 'banner_description' => $banner_description, 'banner_order' => $banner_order);
if ($banner_images != null) {
$_arData = array_add($_arData, 'banner_images', $banner_images);
}
$banne_update = Banner::where('id', $id)->update($_arData);
} catch (Exception $_ex) {
Session::flash('error', '$$$ --- Error Banner -' . $id . '(' . $_ex->getMessage() . ') --- $$$');
}
Session::flash('success', '$$$ --- Update - ' . $id . ' Successfully --- $$$');
return Redirect::to('qlm-admin/banners/' . $id);
}
示例10: cauhinh
function MY_Controller()
{
parent::Controller();
$this->load->library('enum');
$this->load->config('fireignition');
$this->load->helper('language');
$this->lang->load('site');
$this->load->library('hit_counter');
$this->load->library('FirePHP');
if ($this->config->item('fireignition_enabled')) {
if (floor(phpversion()) < 5) {
log_message('error', 'PHP 5 is required to run fireignition');
} else {
$this->load->library('FirePHP');
}
} else {
$this->load->library('Firephp_fake');
$this->firephp =& $this->firephp_fake;
}
//redirect from old website
$this->redirectList();
$cauhinh = new cauhinh();
$cauhinh->get();
$this->cauhinh = $cauhinh;
if ($this->uri->segment(1, "") == "admin") {
$this->logged_in_user = $this->_get_user();
$this->admin = $this->config->item('admin');
$this->admin_url = $this->config->item('admin_url');
$this->admin_images = base_url() . "images/admin/";
//LOAD HELPER
$this->load_admin_resource();
//check maintenance admin , only webmaster can login
$this->resetNewsViewMost();
} else {
//check login user
//$this->flogged_in_user=$this->_fget_user();
$this->isCache = true;
$this->userLoginFlag = 0;
$userLogin = $this->session->userdata('userLogin');
$userToken = $this->session->userdata('userToken');
$customer = new Customer();
$customer->get_by_username($userLogin);
if ($customer->exists() && md5($customer->id) == trim($userToken)) {
$loginUsername = $customer->username;
$this->customer = $customer;
if ($this->session->userdata('userloginFlag') == "1") {
$this->userLoginFlag = 1;
$this->session->set_userdata('userloginFlag', "0");
}
} else {
$loginUsername = "";
}
$this->loginUsername = $loginUsername;
$this->loginUser = $customer;
$this->page_title = getconfigkey("defaultPageTitle");
$this->load->helper('language');
$this->show_analytic = TRUE;
$this->page_keyword = getconfigkey("defaultKeyword");
$this->page_description = getconfigkey("defaultDescription");
$this->isRobotFollow = true;
//------------------------------------------------
// get data handler
//------------------------------------------------
$listAllCat = array();
$newsCate = new Newscatalogue();
$newsCate->order_by('position');
$newsCate->where(array('recycle' => 0, 'parentcat_id' => 58));
$newsCate->get_iterated();
$this->newsCate = $newsCate;
foreach ($newsCate as $row) {
array_push($listAllCat, $row->id);
}
/*Get all business cat*/
$businessCat = new Newscatalogue();
$businessCat->order_by('position');
$businessCat->where(array('recycle' => 0, 'parentcat_id' => 91));
$businessCat->get_iterated();
$this->businessCat = $businessCat;
$guideCate = new Newscatalogue();
$guideCate->order_by('position');
$guideCate->where(array('recycle' => 0, 'parentcat_id' => 76));
$guideCate->get_iterated();
$this->guideCate = $guideCate;
foreach ($guideCate as $row) {
array_push($listAllCat, $row->id);
}
$this->listAllCat = $listAllCat;
$projectsCate = new Newscatalogue();
$projectsCate->order_by('position');
$projectsCate->where(array('recycle' => 0, 'parentcat_id' => 83));
$projectsCate->get_iterated();
$this->projectsCate = $projectsCate;
$arrayCateNewsId = array();
foreach ($this->projectsCate as $row) {
$arrayCateNewsId[] = $row->id;
}
$this->arrCateProject = $arrayCateNewsId;
// project hot
$projectHot = new Article();
$projectHot->where('recycle', 0);
//.........这里部分代码省略.........