本文整理汇总了PHP中App\Http\Controllers\App类的典型用法代码示例。如果您正苦于以下问题:PHP App类的具体用法?PHP App怎么用?PHP App使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了App类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: crearPdf
/**
* Show the form for creating a new resource.
*
* @return Response
*/
public function crearPdf($id)
{
$reporte = ReporteBajas::consultar($id);
$pdf = \App::make('dompdf.wrapper');
$pdf->loadView('generarPdf', compact('reporte'));
return $pdf->stream();
}
开发者ID:jlzor,项目名称:proyectoAlmacen,代码行数:12,代码来源:homeController.php
示例2: callback
/**
* Callback action that should be called by auth0, logs the user in
*/
public function callback()
{
// Get a handle of the Auth0 service (we don't know if it has an alias)
$service = \App::make('auth0');
// Try to get the user information
$profile = $service->getUser();
// Get the user related to the profile
$auth0User = $this->userRepository->getUserByUserInfo($profile);
if ($auth0User) {
if (!str_contains($auth0User->name, '@')) {
$name = $auth0User->name;
} else {
$name = $auth0User->nickname;
}
// If we have a user, we are going to log him in, but if
// there is an onLogin defined we need to allow the Laravel developer
// to implement the user as he wants an also let him store it.
$flight = User::firstOrCreate(['github_id' => $auth0User->user_id, 'email' => $auth0User->email, 'picture' => $auth0User->picture, 'name' => $name]);
if ($service->hasOnLogin()) {
$user = $service->callOnLogin($auth0User);
} else {
// If not, the user will be fine
$user = $auth0User;
}
\Auth::login($user);
}
return \Redirect::intended('/');
}
开发者ID:sgf-web-devs,项目名称:sgf-winner,代码行数:31,代码来源:Auth0Controller.php
示例3: __construct
public function __construct()
{
$this->shop = \App::make('\\Interfaces\\ShopInterface');
$this->postcode = \App::make('\\Interfaces\\PostcodeInterface');
$this->calendar = \App::make('\\Interfaces\\CalendarInterface');
//Input::merge(array('postcodes'=>array('hu52up','m193qd','m80lx')));
}
开发者ID:nq2916,项目名称:savings,代码行数:7,代码来源:ShopController.php
示例4: facturar
public function facturar(Request $request)
{
$productos = Venta::obtenerListaReporte($request->input('id_venta'));
$dompdf = \App::make('dompdf.wrapper');
$dompdf->loadView('factura', compact('productos'));
return $dompdf->stream();
}
开发者ID:GriseldaCuevas,项目名称:WebShop,代码行数:7,代码来源:UsuarioController.php
示例5: getReset
/**
* Display the password reset view for the given token.
*
* @param string $token
* @return Response
*/
public function getReset($token = null)
{
if (is_null($token)) {
App::abort(404);
}
return View::make('password.reset')->with('token', $token);
}
开发者ID:tommarshallandrews,项目名称:gloseventhire,代码行数:13,代码来源:RemindersController.php
示例6: __construct
public function __construct()
{
$this->middleware('ipblocked');
$driver = config('database.default');
$database = config('database.connections');
$this->db = $database[$driver]['database'];
$this->dbuser = $database[$driver]['username'];
$this->dbpass = $database[$driver]['password'];
$this->dbhost = $database[$driver]['host'];
if (\Auth::check() == true) {
if (!\Session::get('gid')) {
\Session::put('uid', \Auth::user()->id);
\Session::put('gid', \Auth::user()->group_id);
\Session::put('eid', \Auth::user()->email);
\Session::put('ll', \Auth::user()->last_login);
\Session::put('fid', \Auth::user()->first_name . ' ' . \Auth::user()->last_name);
\Session::put('themes', 'sximo-light-blue');
}
}
if (!\Session::get('themes')) {
\Session::put('themes', 'sximo');
}
if (defined('CNF_MULTILANG') && CNF_MULTILANG == 1) {
$lang = \Session::get('lang') != "" ? \Session::get('lang') : CNF_LANG;
\App::setLocale($lang);
}
$data = array('last_activity' => strtotime(Carbon::now()));
\DB::table('tb_users')->where('id', \Session::get('uid'))->update($data);
}
开发者ID:Gadurp1,项目名称:Final-420-Project,代码行数:29,代码来源:Controller.php
示例7: profile_pdf
public function profile_pdf($user)
{
$pdf = \App::make('dompdf.wrapper');
$html = view('pages.users.profile_pdf', compact('user'));
$pdf->loadHTML($html);
return $pdf->stream();
}
开发者ID:joaonzangoII,项目名称:find_my_campuses_friend,代码行数:7,代码来源:UsersController.php
示例8: index
public function index()
{
$pages = Page::all();
$landing = Landing::where('lang', \App::getLocale())->first();
$universities = University::where('lang', \App::getLocale())->take(9)->get();
return view('pages.index', ['pages' => $pages, 'landing' => $landing, 'universities' => $universities]);
}
开发者ID:AbuLoot,项目名称:unichina,代码行数:7,代码来源:PagesController.php
示例9: handler
public static function handler()
{
$data = array('success' => false, 'title' => trans('t.contactErrorTitle'), 'message' => trans('t.contactErrorMessage'));
$requestAllowed = true;
if (self::$requestType == 'ajax') {
$requestAllowed = \Request::ajax() && \Request::get('getIgnore_isAjax');
}
if ($requestAllowed) {
$validator = \Validator::make(\Request::all(), self::$rules);
if ($validator->fails()) {
$messages = $validator->getMessageBag()->toArray();
$finalMessages = array();
foreach ($messages as $field => $fieldMessages) {
foreach ($fieldMessages as $fieldMessage) {
$finalMessages[] = $fieldMessage;
}
}
$message = implode("\n", $finalMessages);
$data['message'] = $message;
return self::returnData($data);
} else {
try {
Mailer::sendMessage(\Request::all());
$data['success'] = true;
$data['title'] = trans('t.contactSuccessTitle');
$data['message'] = trans('t.contactSuccessMessage');
} catch (\Exception $e) {
Dbar::error("Error while sending message: " . $e->getMessage());
}
}
return self::returnData($data);
}
\App::abort(404);
}
开发者ID:gtcrais,项目名称:gtcms,代码行数:34,代码来源:ContactController.php
示例10: getPrint
public function getPrint($id, $term)
{
// $pdf = \App::make('dompdf.wrapper');
$ActivitiesData = $this->getCombineData($id, $term);
// dd($ActivitiesData);
$pdf = \App::make('dompdf.wrapper');
$html = '<html><body>-----------------';
foreach ($ActivitiesData[1] as $data) {
$html .= '<table><tr><th>' . $data['act_name'] . ' : ' . $data['score'] . '/' . $data['total'] . '</th> </tr></table>';
}
$html .= '-----------------</body></html>';
$pdf->loadHTML($html)->setPaper('a4')->setOrientation('portrait')->setWarnings(false)->save('myfile.pdf');
return $pdf->stream();
/* $pdf->loadHTML(''
. ''
. '<h1 style = "text-align:center;">Class Record</h1>'
.'<table>'
. ' <tr>'
foreach($ActivitiesData[1] as $data){
.'<th>'.$data['act_name']
. '</th>'
}
. '</tr>'
. '</table>'
)->setPaper('a4')->setOrientation('portrait')->setWarnings(false)->save('myfile.pdf');
return $pdf->stream(); */
}
开发者ID:must-classrecord,项目名称:must-classrecord.github.io,代码行数:29,代码来源:MainController.php
示例11: InDanhSachDeTaiNhom
public function InDanhSachDeTaiNhom($mahp, $macb)
{
$date = date('Y-m-d');
$nguoiin = DB::table('giang_vien')->where('macb', $macb)->value('hoten');
//Lấy giá trị năm học và học kỳ hiện tại
$namht = DB::table('nien_khoa')->distinct()->orderBy('nam', 'desc')->value('nam');
$hkht = DB::table('nien_khoa')->distinct()->orderBy('hocky', 'desc')->where('nam', $namht)->value('hocky');
$mank = DB::table('nien_khoa as nk')->join('nhom_hocphan as hp', 'nk.mank', '=', 'hp.mank')->where('nk.nam', $namht)->where('nk.hocky', $hkht)->value('nk.mank');
$mahp = \Request::segment(3);
if ($mahp == "all") {
$gv_hp = DB::table('nhom_hocphan as hp')->select('gv.macb', 'gv.hoten', 'hp.tennhomhp', 'hp.manhomhp')->join('giang_vien as gv', 'gv.macb', '=', 'hp.macb')->where('gv.macb', $macb)->where('hp.mank', $mank)->get();
//Lấy mảng các mã nhóm HP của cán bộ này ở hk-nk hiện tại
$ds_hpgv = DB::table('nhom_hocphan as hp')->select('hp.manhomhp')->join('giang_vien as gv', 'gv.macb', '=', 'hp.macb')->where('gv.macb', $macb)->where('hp.mank', $mank)->lists('hp.manhomhp');
$dssv = DB::table('sinh_vien as sv')->leftjoin('chia_nhom as chn', 'sv.mssv', '=', 'chn.mssv')->leftjoin('ra_de_tai as radt', 'chn.manhomthuchien', '=', 'radt.manhomthuchien')->leftjoin('de_tai as dt', 'radt.madt', '=', 'dt.madt')->whereIn('chn.manhomhp', $ds_hpgv)->orderBy('chn.manhomthuchien', 'asc')->get();
} else {
if ($mahp != null) {
$gv_hp = DB::table('nhom_hocphan as hp')->select('gv.macb', 'gv.hoten', 'hp.tennhomhp')->join('giang_vien as gv', 'gv.macb', '=', 'hp.macb')->where('hp.manhomhp', $mahp)->first();
$dssv = DB::table('sinh_vien as sv')->leftjoin('chia_nhom as chn', 'sv.mssv', '=', 'chn.mssv')->leftjoin('ra_de_tai as radt', 'chn.manhomthuchien', '=', 'radt.manhomthuchien')->leftjoin('de_tai as dt', 'radt.madt', '=', 'dt.madt')->where('chn.manhomhp', $mahp)->orderBy('chn.manhomthuchien', 'asc')->get();
}
}
$view = \View::make('giangvien.in-danh-sach-de-tai-nhom', compact('macb', 'nguoiin', 'namht', 'hkht', 'gv_hp', 'dssv', 'date', 'mahp'));
$pdf = \App::make('dompdf.wrapper');
$pdf = \PDF::loadHTML($view)->setPaper('a4')->setOrientation('landscape');
return $pdf->stream("DanhSachDeTaiNhom.pdf");
}
开发者ID:HaNguyen1410,项目名称:laravProject1,代码行数:25,代码来源:ChianhomController.php
示例12: graficos
public function graficos(Request $request)
{
$html = $request->input('htmlContent');
$pdf = \App::make('dompdf.wrapper');
$pdf->loadHTML($html);
return $pdf->stream('graficos');
}
开发者ID:Mowex,项目名称:preg,代码行数:7,代码来源:EncuestaController.php
示例13: rncStad
/**
*Devuelve un pdf con todos los datos
*estadisticos del Reg, de tumores del año
*y del mes que se pase
*responde a @GET /reporte/estadisticas/rncs
*/
public function rncStad(Request $data)
{
//Reglas de validacion
$rules = ['year' => 'required', 'mon' => 'required|numeric|min:1|max:12'];
/*
*Valida datos segun las reglas $rules
*y genera mensajes segun $messages
*/
$validator = Validator::make($data->all(), $rules, $this->messages);
/*
*Si hay error en los datos,
*regresa el primer mensaje de
*error
*/
if ($validator->fails()) {
//Primer mensaje de error
$errMessage = $validator->errors()->first();
return Response()->json(['status' => 'danger', 'message' => $errMessage]);
} else {
$year = $data->year;
$mon = '0' . $data->mon;
$date = $year . '-' . $mon;
$mons = ['ENERO', 'FEBRERO', 'MARZO', 'ABRIL', 'MAYO', 'JUNIO', 'JULIO', 'AGOSTO', 'SEPTIEMBRE', 'OCTUBRE', 'NOVIEMBRE', 'DICIEMBRE'];
$mo = $mons[$mon - 1];
$registers = DB::table('rncs')->where('fec_reg', 'like', $date . '%')->select('reg_rgn', 'nom_pri', 'nom_seg', 'ape_pri', 'ape_seg', 'sex', 'eda_adm', 'prc_edo', 'mun_prc', 'des_ltg', 'cod_ltg', 'sco_ltg', 'des_morf', 'cod_morf', 'fec_fall', 'qui_otra', 'num_his')->get();
$man = DB::table('rncs')->where('fec_reg', 'like', $date . '%')->where('sex', 'MASCULINO')->count();
$girl = DB::table('rncs')->where('fec_reg', 'like', $date . '%')->where('sex', 'FEMENINO')->count();
$view = \View::make('pdfs.rncStad', compact('registers', 'year', 'mo', 'man', 'girl'))->render();
$pdf = \App::make('dompdf.wrapper');
$pdf->loadHTML($view)->setPaper('latter')->setOrientation('landscape');
return $pdf->stream('invoice');
}
}
开发者ID:herodez,项目名称:oncologia,代码行数:39,代码来源:reposController.php
示例14: lista
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function lista()
{
//-------PAGINA-63------------
// $produtos = DB::select('select * from marca');
$produtos = \App::all();
return view('listagem');
}
开发者ID:alexbraulio,项目名称:worldvision3d,代码行数:12,代码来源:produtoController.php
示例15: calificacionDocente
public function calificacionDocente(Request $request)
{
$cursanteCalificador = \DB::table('users')->select('nombres', 'paterno', 'materno')->where('id', Auth::user()->id)->get();
$docenteCalificado = \DB::table('users')->select('nombres', 'paterno', 'materno')->where('id', (int) $request['idDoc'])->get();
$nombreMateria = \DB::table('materias')->where('id', (int) $request['materia'])->value('nombreMateria');
$uno = $request['1'];
$dos = $request['2'];
$tres = $request['3'];
$cuatro = $request['4'];
$cinco = $request['5'];
$seis = $request['6'];
$siete = $request['7'];
$ocho = $request['8'];
$nueve = $request['9'];
$diez = $request['10'];
$once = $request['11'];
$doce = $request['12'];
$trece = $request['13'];
$catorce = $request['14'];
$quince = $request['15'];
$dieciseis = $request['16'];
$diecisiete = $request['17'];
$dieciocho = $request['18'];
$diecinueve = $request['19'];
$veinte = $request['20'];
$view = \View::make('cursante.pdfCalifDocente', compact('cursanteCalificador', 'nombreMateria', 'docenteCalificado', 'uno', 'dos', 'tres', 'cuatro', 'cinco', 'seis', 'siete', 'ocho', 'nueve', 'diez', 'once', 'doce', 'trece', 'catorce', 'quince', 'dieciseis', 'diecisiete', 'dieciocho', 'diecinueve', 'veinte'))->render();
$pdf = \App::make('dompdf.wrapper');
$pdf->loadHTML($view);
return $pdf->download('calificacionDocente.pdf');
}
开发者ID:behimar,项目名称:siseaen,代码行数:30,代码来源:PdfController.php
示例16: __construct
public function __construct()
{
$this->helper = new HelperRepository();
$this->request = \App::make('Illuminate\\Http\\Request');
$this->redirect = \App::make('Illuminate\\Routing\\Redirector');
$this->session = $this->request->session();
}
开发者ID:alientronics,项目名称:fleetany-web,代码行数:7,代码来源:Controller.php
示例17: getUser
public function getUser()
{
$all = User::all();
$env = \App::environment();
var_dump($all, $env);
foreach ($all as $v) {
var_dump($env);
var_dump($v->name);
var_dump($v->nickname);
var_dump($v->createTime);
var_dump($v->updateTime);
var_dump($v->deleteTime);
}
//$id = 30;
//$user = UserService::getUserById($id);
//$list = UserService::getList(1,10);
//\Debugbar::info();
//\Debugbar::error('Error!');
//\Debugbar::warning('Watch out…');
//\Debugbar::addMessage('Another message', 'mylabel');
//\Debugbar::startMeasure('render','Time for rendering');
//\Debugbar::stopMeasure('render');
//\Debugbar::addMeasure('now', LARAVEL_START, microtime(true));
//echo 'ssss';
//\Debugbar::disable();
/*
foreach($list as $k=>$v){
//var_dump($v['name']);
}
var_dump($list);
*/
}
开发者ID:xzungshao,项目名称:lar5-one,代码行数:32,代码来源:UserController.php
示例18: cropPhotoEntidade
/**
* [updatePhoto description]
* @param Integer Id do usuário
* @return ??
*/
public function cropPhotoEntidade($entidade, CropPhotoRequest $request)
{
if (!$entidade) {
App::abort(500, 'Erro durante o processamento do crop');
}
$file = Input::file('image_file_upload');
if ($file && $file->isValid()) {
$widthCrop = $request->input('w');
$heightCrop = $request->input('h');
$xSuperior = $request->input('x');
$ySuperior = $request->input('y');
$destinationPath = public_path() . '/uploads/';
$extension = Input::file('image_file_upload')->getClientOriginalExtension();
// Pega o formato da imagem
$fileName = self::formatFileNameWithUserAndTimestamps($file->getClientOriginalName()) . '.' . $extension;
$file = \Image::make($file->getRealPath())->crop($widthCrop, $heightCrop, $xSuperior, $ySuperior);
$upload_success = $file->save($destinationPath . $fileName);
//Salvando imagem no avatar do usuario;
if ($upload_success) {
/* Settando tipo da foto atual para null, checando se existe antes */
if ($entidade->avatar) {
$currentAvatar = $entidade->avatar;
$currentAvatar->tipo = null;
$currentAvatar->save();
}
$foto = new Foto(['path' => $fileName, 'tipo' => 'avatar']);
$entidade->fotos()->save($foto);
return true;
} else {
return false;
}
}
}
开发者ID:centaurustech,项目名称:vivala,代码行数:38,代码来源:VivalaBaseController.php
示例19: form
function form($id = null)
{
/////////////////////////////
// Load Data if applicable //
/////////////////////////////
if ($id) {
$query['id'] = $id;
$api_response = json_decode($this->api->get($this->api_url . '/travel_agents?' . http_build_query(array_merge($query, ['access_token' => Session::get('access_token')])))->getBody());
if ($api_response->status != 'success') {
return App::abort(404);
}
$data = $this->reformat_images($api_response->data->data)[0];
foreach ($data->addresses as $address) {
$address->status = 'data';
}
unset($data->addresses);
$data->addresses = [$address];
}
/////////////////
// Create Form //
/////////////////
$this->layout->page_template = view($this->version . '.vendors.template');
$this->layout->page_template->page = view($this->version . '.vendors.travel_agents.form')->with('id', $id);
$this->layout->page_template->page->data = $data;
return $this->layout;
}
开发者ID:erickmo,项目名称:CapcusCmsV3,代码行数:26,代码来源:TravelAgentController.php
示例20: debug
public function debug()
{
echo '<pre>';
echo '<h1>Environment</h1>';
echo \App::environment() . '</h1>';
echo '<h1>Debugging?</h1>';
if (config('app.debug')) {
echo "Yes";
} else {
echo "No";
}
echo '<h1>Database Config</h1>';
/*
The following line will output your MySQL credentials.
Uncomment it only if you're having a hard time connecting to the database and you
need to confirm your credentials.
When you're done debugging, comment it back out so you don't accidentally leave it
running on your live server, making your credentials public.
*/
//print_r(config('database.connections.mysql'));
echo '<h1>Test Database Connection</h1>';
try {
$results = \DB::select('SHOW DATABASES;');
echo '<strong style="background-color:green; padding:5px;">Connection confirmed</strong>';
echo "<br><br>Your Databases:<br><br>";
print_r($results);
} catch (Exception $e) {
echo '<strong style="background-color:crimson; padding:5px;">Caught exception: ', $e->getMessage(), "</strong>\n";
}
echo '</pre>';
}
开发者ID:stiwarih,项目名称:p4,代码行数:31,代码来源:HomeController.php
注:本文中的App\Http\Controllers\App类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论