text stringlengths 29 2.99M |
|---|
<?php
use App\Http\Controllers\Admin\MenuController;
use App\Http\Controllers\Admin\OrderController;
use App\Http\Controllers\Admin\ProductController;
use App\Http\Controllers\Admin\SliderController;
use App\Http\Controllers\Admin\UploadController;
use App\Http\Controllers\Admin\Users\LoginController;
use App\Http\Con... |
<?php
//============================================================+
// File name : example_018.php
// Begin : 2008-03-06
// Last Update : 2011-10-01
//
// Description : Example 018 for TCPDF class
// RTL document with Persian language
//
// Author: Nicola Asuni
//
// (c) Copyright:
// ... |
<?php
/**
* Created by PhpStorm.
* User: wu
* Date: 2020/3/16
* Time: 14:05
*/
namespace App\Http\Common;
class Common
{
/**
* 时间搜索插件封装
* @param $timeset
* @return array
*/
function get_time_search($timeset)
{
switch ($timeset) {
case 1;//... |
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateRatesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('rates', function ... |
<?php
namespace App\Http\Controllers;
use App\Department;
use App\RoleUser;
use Illuminate\Http\Request;
use App\User;
use App\DepartmentUser;
use App\Role;
use Illuminate\Support\Facades\Session;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Facades\Auth;
class UsersController extends Controller
{
... |
<?php
namespace App\Http\Controllers;
use App\Bank;
use App\Country;
use App\GradeRank;
use App\Major;
use App\Person;
use App\PersonTitles;
use App\SceMembershipType;
use Illuminate\Support\Facades\Auth;
use Illuminate\Http\Request;
use App\Rules\ValidDate;
use App\Rules\ValidHijriDate;
use App\Rules\ValidGregorianD... |
<?php
namespace FirePHP\Exception;
/**
* UploadFileNotFoundException est l'exception à l'upload lors que le fichier n'est pas trouvé.
* @author Yoann Chaumin <yoann.chaumin@gmail.com>
*/
class UploadFileNotFoundException extends Exception
{
}
?> |
<?php
namespace DevGroup\Users\actions;
use DevGroup\Users\models\User;
use DevGroup\Users\models\UserService;
use yii\base\Action;
use Yii;
use yii\web\NotFoundHttpException;
use yii\web\ServerErrorHttpException;
/**
* Class DeleteSocial
*
* @package DevGroup\Users\actions
*/
class DeleteSocial extends Action
{... |
<?php
namespace app\wxpay\controller;
use think\Loader;
use think\Controller;
class Index extends Controller
{
public function index()
{
return $this->fetch();
}
public function native()
{
Loader::import('wxpay.WxPayNativePay', EXTEND_PATH);
//Loader::import('wxpay.lib.WxPa... |
Laravel provides an expressive, minimal API arround the Guzzle HTTP client, allowing you to quickly make outgoing HTTP requests to communicate with other web apps.
Laravel's wrapper around Guzzle is focused on its most common use cases and a wonderful dev experience.
Before getting started, insure you have the Guzzl... |
<?php
/*
Helper File for Plugin: Filedownload
Plugin URI: http://www.worldweb-innovation.de/
Description: Database functions
Author: Peter Gross
Author URI: http://www.worldweb-innovation.de/
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public Licen... |
<?php
return [
'test-00036-00405' => [
'ua' => 'Mozilla/5.0 (Linux; Android 4.4.2; XT890 Build/KIA20.74) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.111 Mobile Safari/537.36',
'properties' => [
'Browser_Name' => 'Chrome',
'Browser_Type' ... |
<?php
namespace App\Http\Livewire;
use App\Models\Site;
use App\Valet\Valet;
use Livewire\Component;
use Livewire\WithPagination;
class Sites extends Component
{
use WithPagination;
protected $paginationTheme = 'bootstrap';
public $project_path;
public $project_name;
public $onLatestVerision;
... |
<?php
namespace App\Models;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
class Pasien extends Authenticatable
{
use Notifiable;
protected $fillable = [
'nomor','nama','username','password','lp','kota','foto','alamat_pasien','gol_darah','hp_pasien',... |
End of preview. Expand in Data Studio
- Downloads last month
- 12