text stringlengths 2 1.03M |
|---|
<!--Basic Scripts-->
@section('footer')
<script src="{{asset("assets/js/jquery.min.js")}}"></script>
<script src="{{asset("assets/js/bootstrap.min.js")}}"></script>
<script src="{{asset("assets/js/slimscroll/jquery.slimscroll.min.js")}}"></script>
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-beta.1/dist/js/s... |
@extends('system')
@section('content')
<article>
<h1>{{$article->title}}</h1>
<article>
{{$article->body}}
</article>
</article>
@stop |
<?php
namespace App\Http\Resources;
use Illuminate\Contracts\Support\Arrayable;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\ResourceCollection;
class ProductCollection extends ResourceCollection
{
/**
* Transform the resource collection into an array.
*
* @param Request $requ... |
<div>
@if ($isOpen)
<div class="modal backdrop d-block">
<div class="modal-backdrop" style="background: rgba(0,0,0,.5); backdrop-filter: blur(1px);">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<form wire:submit.prevent="up... |
@extends("cactustmp")
@section("mainContent")
<div class="breadcrumb-area breadcrumb-bg-3 bg-gray mt-150">
<div class="container-fluid">
<div class="breadcrumb-content breadcrumb-content-white text-center">
<div class="breadcrumb-title">
<h2>Search</h2>
... |
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class SeedCategoriesData extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
//直接插入新数据, 跟seed功能一样, seed插入的是假... |
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model app\models\Types */
$this->title = 'Добавление вида договора';
$this->params['breadcrumbs'][] = ['label' => 'Админ панель', 'url' => ['site/admin']];
$this->params['breadcrumbs'][] = ['label' => 'Виды договоров', 'url' => ['index']];
$this->pa... |
<?php
// This file is auto-generated, don't edit it. Thanks.
namespace AlibabaCloud\SDK\CloudAPI\V20160714\Models\DescribeDeployedApiResponseBody\serviceParametersMap;
use AlibabaCloud\Tea\Model;
class serviceParameterMap extends Model
{
/**
* @var string
*/
public $requestParameterName;
/**
... |
<?php
namespace App\Http\Requests\Product;
use Illuminate\Foundation\Http\FormRequest;
class PromoProductRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
... |
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/storagetransfer/v1/transfer_types.proto
namespace Google\Cloud\StorageTransfer\V1\MetadataOptions;
use UnexpectedValueException;
/**
* Options for handling file GID attribute.
*
* Protobuf type <code>google.storagetransfer.v1.Metada... |
<?php
/**
* Pure-PHP implementation of SSHv2.
*
* PHP version 5
*
* Here are some examples of how to use this library:
* <code>
* <?php
* include 'vendor/autoload.php';
*
* $ssh = new \phpseclib\Net\SSH2('www.domain.tld');
* if (!$ssh->login('username', 'password')) {
* exit('Login Failed')... |
<?php
/*
* Autor : Romulo B Bosco
* Data criação : 28/05/2015
* Descrição : Configurações do sistema
*/
class System {
private $url;
private $explode;
private $ind;
private $value;
public $controllers;
public $action;
public $params;
public function __construct() {
$this-... |
<?php
// This file should be in UTF8 without BOM - Accents examples: éèê
// +----------------------------------------------------------------------+
// | Copyright (c) 2004-2021 Advisto SAS, service PEEL - contact@peel.fr |
// +----------------------------------------------------------------------+
// | This file is p... |
{{--<script type="text/javascript" src="<?php echo base_url() . 'assets/js/jquery-3.2.1.js' ?>"></script>--}}
{{--<script type="text/javascript" src="<?php echo base_ur() . 'assets/js/jquery.dataTables.js' ?>"></script>--}}
{{--<script src="<?= base_url() ?>assets/js/bootstrap.js"></script>--}}
{{--<script src="<?= bas... |
<?php
/**
* 分组管理
* Author: lfq
* Date: 2018/7/5
*/
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use App\Models\Team;
use App\Models\User;
use App\Models\TeamUser;
// Use App\Http\Resources\TeamResourceCollection;
// Use App\Http\Resources\UserResourceCollection;... |
<?php
namespace RestApis\Blockchain\BCH\PaymentForwarding;
use Common\Response;
use RestApis\Blockchain\BCH\Common;
class ListOfPastForward extends Common {
protected $network;
/**
* @param $network string
* @return \stdClass
*/
public function get($network)
{
$this->network... |
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateOrderItemsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('order_items'... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="<?= base_url().'assets/gambar/telkom.png'?>">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstr... |
@extends('layouts.auth')
@section('title', 'Login as Admin')
@section('content')
<form class="form-signin" role="form" method="POST" action="{{ url('/admin/verify') }}">
{{ csrf_field() }}
<div class="login-wrap">
<img src="/img/logo.png" class="img-responsive" alt="CasterBuddy Login Lo... |
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>{{ config('app.name', 'Laravel') }}<... |
<?php
require __DIR__ . "/../../../vendor/autoload.php";
use BitWasp\Bitcoin\Address\PayToPubKeyHashAddress;
use BitWasp\Bitcoin\Address\SegwitAddress;
use BitWasp\Bitcoin\Crypto\Random\Random;
use BitWasp\Bitcoin\Key\Factory\PrivateKeyFactory;
use BitWasp\Bitcoin\Script\WitnessProgram;
$privKeyFactory = new Private... |
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class BeritaRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the... |
<div class="left-sidebar-pro">
<nav id="sidebar" class="">
<div class="sidebar-header">
<a href="index.html"><img class="main-logo" src="img/logo/logo.png" alt="" /></a>
<strong><img src="img/logo/logosn.png" alt="" /></strong>
</div>
<div clas... |
<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| ... |
<?php
/**
* Created by PhpStorm.
* User: HP ELITEBOOK 840 G5
* Date: 1/29/2020
* Time: 2:19 PM
*/
namespace frontend\controllers;
use frontend\resource\Comment;
use yii\data\ActiveDataProvider;
class CommentController extends ActiveController
{
public $modelClass = Comment::class;
public function ... |
<?php
declare(strict_types = 1);
namespace Convo\Core\Intent;
interface ISystemEntityRepository extends IPrefixed
{
/**
* @param string $name
* @param string $platformId
* @throws \Convo\Core\ComponentNotFoundException
* @return \Convo\Core\Intent\EntityModel
*/
public function findPl... |
<?php
namespace TestLaravelOne;
use Illuminate\Database\Eloquent\Model;
class Post extends Model
{
use Uuids;
/**
* Indicates if the IDs are auto-incrementing.
*
* @var bool
*/
public $incrementing = false;
public function user()
{
return $this->belongsTo('TestLarave... |
<?php
return [
'welcome' => 'Hoşgeldin',
'dashboard' => 'Panel',
'login' => 'Giriş',
'logout' => 'Çıkış',
'register' => 'Kayıt',
'password' => [
'request' => 'Şifre Sifirla',
'email' => 'Şifre E-posta',
'reset' => 'Şifre Sifirla',
'edit' => 'Şifre Sifirla',
... |
<?php
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the Route... |
@extends('admin.admin_master')
@section('admin')
@php
$prefix = Request::route()->getprefix() ;
$route = Route::current()->getName() ;
@endphp
<script src="https://code.jquery.com/jquery-3.6.0.slim.min.js" integrity="sha256-u7e5khyithlIdTpu22PHhENmPcRdFiHRjhAuHcs05RI=" crossorigin="anonymous"></script>
<!--... |
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| DATABASE CONNECTIVITY SETTINGS
| -------------------------------------------------------------------
| This file will contain the settings needed to access your database.
|
|... |
<!DOCTYPE html>
<html>
@include('layouts.html-head')
<body class="hold-transition skin-blue sidebar-mini">
<div class="wrapper">
@include('layouts.html-header')
<!-- Left side column. contains the logo and sidebar -->
@include('layouts.html-sidebar')
<!-- Content Wrapper. Contains page content -->
<di... |
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class HomeController extends Controller
{
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
// $this->middleware('auth');
}
/**
* Show the application dash... |
<?php
namespace tubalmartin\CssMin;
class Command
{
const SUCCESS_EXIT = 0;
const FAILURE_EXIT = 1;
protected $stats = array();
public static function main()
{
$command = new self;
$command->run();
}
public function run()
{
$opts = getopt(
... |
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class FotoMascota extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
//
Schema::create('foto_mascot... |
<?php
namespace App\Http\Controllers\Sai;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\DB;
use App\Http\Controllers\Controller;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Storage;
class KontenController extends Controller
{
/**
* Display a listing of the resource.
... |
<?php
namespace Omnipay\MultiSafepay\Message;
use Omnipay\Common\Message\AbstractResponse as BaseAbstractResponse;
abstract class AbstractResponse extends BaseAbstractResponse
{
/**
* {@inheritdoc}
*/
public function getMessage()
{
if (isset($this->data->error)) {
return (st... |
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class UpdateUserTableAddCompanyField extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table("user... |
<?php
namespace backend\models;
use Yii;
/**
* This is the model class for table "csc_adposition".
*
* @property string $id
* @property string $name
* @property integer $width
* @property integer $height
* @property integer $is_system
* @property string $description
* @property string $add_time
*/
class Ad... |
@extends('frontend.main_master')
@section('content')
<style>
.card {
border-radius: 10px;
}
.card-img-top:hover {
opacity: 0.3;
}
.card-title {
color: black;
}
</style>
<div class="container-fluid paddding mb-5 my-5 mx... |
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddOrderItemIdInReviewsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('review... |
<?php
return [
'session' => [
'name' => 'slim_session',
'path' => dirname(__DIR__) . '/storage/sessions/',
]
]; |
@extends('layouts.master')
@section('content')
<div class="container" ng-controller="recipeController">
<div class="row">
<div class="col-md-4">
<div class="panel panel-primary">
<div class="panel-heading">
@if (Auth::guest())
<p>Bienvenido al sistema de recipes, inicie sesión o cree una cuenta nuev... |
<?php
if (session_id() == "") session_start(); // Initialize Session data
ob_start(); // Turn on output buffering
?>
<?php include_once "ewcfg10.php" ?>
<?php include_once "ewmysql10.php" ?>
<?php include_once "phpfn10.php" ?>
<?php include_once "migrationsinfo.php" ?>
<?php include_once "usersinfo.php" ?>
<?php includ... |
<?php
declare(strict_types=1);
use Ssch\TYPO3Rector\Rector\v8\v6\RefactorTCARector;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
return static function (ContainerConfigurator $containerConfigurator): void {
$containerConfigurator->import(__DIR__ . '/../../../../../../confi... |
<?php
namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Controller;
use App\Providers\RouteServiceProvider;
use Illuminate\Foundation\Auth\AuthenticatesUsers;
use Auth;
use Illuminate\Http\Request;
class LoginController extends Controller
{
/*
|----------------------------------------------------... |
<?php
use App\Http\Controllers\SectionController as Sec;
use App\Http\Controllers\AdminController as Admin;
?>
<?php $__env->startSection('content'); ?>
<?php if(count($errors) > 0): ?>
<div class="alert alert-danger">
<ul>
<?php foreach($errors->all() as $error): ?>
... |
<div>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Beatae consequuntur deleniti distinctio dolorum eaque
earum eligendi facere impedit magnam, maxime minus officia placeat quibusdam rem soluta temporibus veritatis
voluptatem voluptatum.
</div>
<div>Adipisci alias architecto asperiores at aut cupidit... |
<?php
namespace App\Http\Controllers;
use App\TestVersion;
use Illuminate\Http\Request;
class TestVersionController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
//
}
/**
* Show th... |
<!doctype html>
<html class="fixed sidebar-left-collapsed">
<head>
<!-- Basic -->
<meta charset="UTF-8">
<title>@yield('title')</title>
<meta name="keywords" content="HTML5 Admin Template" />
<meta name="description" content="Porto Admin - Responsive HTML5 Template">
... |
<?php
namespace DrewRoberts\Media\Models;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Collection as DbCollection;
use Illuminate\Support\Collection;
use Illuminate\Support\Str;
use Spatie\EloquentSortable\Sortable;
use Spatie\EloquentSortable\SortableTrait;
use Tipoff\Support\Models\Bas... |
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Category extends Model
{
protected $table="categories";
protected $fillable = ['name', 'description', 'order'];
public function products()
{
return $this->hasMany('App\Product');
}
} |
<!-- Id Field -->
<div class="form-group">
{!! Form::label('id', 'Id:') !!}
<p>{{ $medicalSpecialty->id }}</p>
</div>
<!-- Name Field -->
<div class="form-group">
{!! Form::label('name', 'Name:') !!}
<p>{{ $medicalSpecialty->name }}</p>
</div>
<!-- Medical Id Field -->
<div class="form-group">
{!!... |
@extends('layouts.app')
@section('title'){{ Auth::user()->name }}@endsection
@section('description'){{ __('User page a ministry with stand.') }}@endsection
@section('content')
<div class="container">
<div class="row justify-content-center">
<div class="col-md-12">
<div clas... |
<?php
use yii\helpers\Html;
use yii\grid\GridView;
use callmez\wechat\models\ReplyRule;
use callmez\wechat\widgets\PagePanel;
$this->title = '回复规则';
$this->params['breadcrumbs'][] = $this->title;
?>
<?php PagePanel::begin(['options' => ['class' => 'reply-index']]) ?>
<?php // echo $this->render('_search', ['model'... |
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="<?php echo asset('style.css')?>">
<title>Document</title>
</head>... |
<?php
/* WebProfilerBundle:Collector:form.html.twig */
class __TwigTemplate_3538b265e29092e3028e8ccec7b642cb2a5ad9f8a81cf574941ab1768e8a124a extends Twig_Template
{
public function __construct(Twig_Environment $env)
{
parent::__construct($env);
// line 1
$this->parent = $this->loadTemp... |
<?php
namespace ContainerU3xIjYg;
use Symfony\Component\DependencyInjection\Argument\RewindableGenerator;
use Symfony\Component\DependencyInjection\Exception\RuntimeException;
/**
* @internal This class has been auto-generated by the Symfony Dependency Injection Component.
*/
class getSecurity_Validator_UserPasswo... |
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\HttpKernel\Event;
use Symfony\Component\HttpKernel\Ht... |
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateQuotecomputeclientsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('quotecomputeclients', function(Blueprint $... |
<?php
/**
* Dutchento Vatfallback
* Provides free VAT fallback mechanism
* Copyright (C) 2018 Dutchento
*
* MIT license applies to this software
*/
namespace Dutchento\Vatfallback\Plugin\Magento\Customer\Model;
use Dutchento\Vatfallback\Service\CleanNumberString;
use Dutchento\Vatfallback\Service\Exceptions\NoV... |
<?php
namespace App\Http\Controllers\Sample;
use App\Http\Requests\Sample\Hoge\CreateRequest;
use App\Models\Eloquent\Hoge;
use App\Http\Requests;
use App\Http\Controllers\Controller;
class HogeController extends Controller
{
public function getIndex()
{
return view('sample/hoge/index');
}
... |
@extends('layouts.adminPanel')
@section('body')
<button class="btn btn-success mt-2 mb-2 ml-3" data-target="#addSponser" data-toggle="modal">+ زيادكردنی ڕیكلام</button>
<div class="col-8
col-sm-6 col-md-4 mt-4 mx-auto mess">
</div>
<div class="col-12 table-responsive mx-auto">
<table class="col-12 text-c... |
<?php
switch (@parse_url($_SERVER['REQUEST_URI'])['path']) {
case '/kit_activated':
require 'kit_activated.php';
exit;
break;
case '/es':
require 'lang_es.php';
break;
case '/cn';
require 'lang_cn.php';
break;
case '/tg';
require 'lang_tg.p... |
<?php
namespace App\Controllers;
class Pages extends BaseController
{
public function index()
{
$data = [
'title' => 'Home | WebProgramingIsaec'
];
return view('pages/home', $data);
}
public function about()
{
$data = [
'title' => 'About me'... |
<?php
/**
* [NULLED BY DARKGOTH 2014]
*/
defined('PHPFOX') or exit('NO DICE!');
/**
*
*
* @copyright [PHPFOX_COPYRIGHT]
* @author Raymond Benc
* @package Module_Help
* @version $Id: help.class.php 1496 2010-03-05 17:15:05Z Raymond_Benc $
*/
class Help_Service_Help extends Phpfox_Service
{
/**
... |
<?php
/*
* This file is part of the Sonata project.
*
* (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sonata\NotificationBundle;
use Sonata\CoreBundle\Form\FormHel... |
@extends('layouts.main')
@section('content')
<div class="flex items-center justify-between mb-3">
<h1 class="text-gray-700 text-2xl py-4" >{{ $contact->list->name }}</h1>
<a href="{{ route('contacts.create', $contact->list->id) }}" class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded text-c... |
<?php
defined('DS') or exit('No direct script access.');
use System\Storage;
class StorageTest extends \PHPUnit_Framework_TestCase
{
private static $temp;
/**
* Setup.
*/
public function setUp()
{
self::$temp = path('storage').'temp';
if (! is_dir(self::$temp)) {
... |
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Anggota_Kelas extends Model
{
//
} |
<?php
namespace Christhompsontldr\LaravelAsana;
use Illuminate\Foundation\Support\Providers\EventServiceProvider;
use Illuminate\Support\Str;
class ServiceProvider extends EventServiceProvider
{
protected $listen = [
\Christhompsontldr\LaravelAsana\Events\AsanaResponse::class => [
\Christhomp... |
<?php
/**
* The template to display the reviewers meta data (name, verified owner, review date)
*
* This template can be overridden by copying it to yourtheme/woocommerce/single-product/review-meta.php.
*
* HOWEVER, on occasion WooCommerce will need to update template files and you
* (the theme developer) will ne... |
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script src="https://kit.fontawesome.com/5d3285099a.js" crossorigin="anonymous"></script>
<!-- Bootstrap CSS -->
<l... |
<!-- START HEADER -->
<div class="header ">
<!-- START MOBILE CONTROLS -->
<div class="container-fluid relative">
<!-- LEFT SIDE -->
<div class="pull-left full-height visible-sm visible-xs">
<!-- START ACTION BAR -->
<div class="header-inner">
... |
<?php
// modules/board/action.php
header("content-type: text/html; charset=UTF-8");
// inint
include '../../bin/inint.php';
// ตรวจสอบ referer
if (gcms::isReferer()) {
// ค่าที่ส่งมา
if (preg_match('/(quote|edit|delete|pin|lock|deleting)-([0-9]+)-([0-9]+)-([0-9]+)-(.*)$/', $_POST['id'], $match)) {
$action ... |
<?php
namespace App\Http\Controllers;
use Illuminate\Support\Facades\DB;
use Illuminate\Http\Request;
use Symfony\Component\VarDumper\VarDumper;
class SiswaController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function ind... |
<?php
namespace afijos\MainBundle\Form;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
class UbicarType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
... |
<?php
defined('C5_EXECUTE') or die("Access Denied.");
$valt = Loader::helper('validation/token');
$token = '&' . $valt->getParameter();
$dh = Loader::helper('concrete/dashboard');
if (isset($cp)) {
if ($cp->canViewToolbar()) {
?>
<style type="text/css">div.ccm-page {padding-top: 48px !important;} </style>... |
@extends('layouts.app')
@section('title','List Blog in '.$category->title)
@section('content')
<div class="container">
<div class="row">
@foreach($blogs as $blog)
<div class="col-md-4 col-sm-6">
<div class="post-default">
<div class=... |
<?php
/**
Copyright 2013 Myers Enterprises II
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or ag... |
<?php namespace App\Http;
use Illuminate\Foundation\Http\Kernel as HttpKernel;
class Kernel extends HttpKernel {
/**
* The application's global HTTP middleware stack.
*
* @var array
*/
protected $middleware = [
'Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode',
'Illuminate\Cookie\Middlewa... |
<?php
namespace Procure\Service;
use Zend\ServiceManager\FactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
/**
* AP Invoice Search
* @author Nguyen Mau Tri
*
*/
class ApSearchServiceFactory implements FactoryInterface {
/**
*
* {@inheritDoc}
* @see \Zend\ServiceManager\FactoryInterfac... |
<script type="text/Javascript">
$(document).ready(function() {
var tabel_outlet = $('#tabel-outlet').DataTable({
"processing":true,
"serverSide":true,
"ajax":{
"type":"POST",
"url":"<?= base_url();?>Outlet/get_all_by_tables",
},
"columns":[
{"data":"id_outlet",
render:function(da... |
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Yajra\DataTables\Facades\DataTables;
use App\Loaninfo;
use DB;
class LoaninfoController extends Controller
{
function index()
{
return view('loaninfo');
}
function get_datatable()
{
re... |
<?php
/**
* Customizer Control: background.
*
* Creates a new custom control.
* Custom controls contains all background-related options.
*
* @package Kirki
* @subpackage Controls
* @copyright Copyright (c) 2017, Aristeides Stathopoulos
* @license http://opensource.org/licenses/https://opensource.org... |
<?php
use Fuel\Core\Model_Crud;
class Model_User extends Model_Crud{
protected static $_table_name = 'users';
protected static $_primary_key = 'id';
} |
<?php
use Illuminate\Database\Seeder;
class AdminsTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
factory('App\Models\Admin',3)->create([
'password' => bcrypt('123456'),
// 'api_token' => str_random(6... |
<?php
/**
* This file is part of CaptainHook.
*
* (c) Sebastian Feldmann <sf@sebastian.feldmann.info>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace CaptainHook\App\Runner\Action;
use CaptainHook\App\Config;
use Captain... |
<!--Sidebar End-->
<div class="has-sidebar-left">
<div class="pos-f-t">
<div class="collapse" id="navbarToggleExternalContent">
<div class="bg-dark pt-2 pb-2 pl-4 pr-2">
<div class="search-bar">
<input class="transparent s-24 text-white b-0 font-weight-lighter w-128 height-50... |
<div class="header" id="header-overlay">
<div class="container">
<div class="row" style="background: #fafafa;">
<div class="col-sm-12" >
<div class="col-sm-3">
<a href="/"><img src="{{ asset('logo.png') }}" class="imgLogo hidden-medium-down" style="width: auto... |
<?php
/*
* Ratepay PHP-Library
*
* This document contains trade secret data which are the property of
* Ratepay GmbH, Berlin, Germany. Information contained herein must not be used,
* copied or disclosed in whole or part unless permitted in writing by Ratepay GmbH.
* All rights reserved by Ratepay GmbH.
*
* Co... |
<?php declare(strict_types=1);
namespace Hyva\Admin\Test\Integration\Model;
use Hyva\Admin\Model\FormSource;
use Hyva\Admin\Test\Integration\Model\FormSource\StubFormSourceTarget;
use Magento\Catalog\Api\Data\ProductInterface;
use Magento\Catalog\Model\Product;
use Magento\Cms\Api\Data\BlockInterface;
use Magento\Cus... |
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
?>
<meta charset="utf-8">
<title><?= $page_title ?></title>
<?= meta('viewport', 'width=device-width, initial-scale=1.0, maximum-... |
<?php
N2Loader::import('libraries.form.element.text');
class N2ElementPassword extends N2ElementText
{
public $fieldType = 'password';
} |
<?php
session_start();
if(isset($_SESSION['login'])){
$idUser = $_SESSION['login'];
require_once('includes/connexionbd.php');
require_once('includes/function_role.php');
if(!has_Droit($idUser, "Modifier bapteme")){
header('Location:index.php');
}else{
... |
<html lang='ja'>
<header>
<meta http-equiv='Content-Type' content='text/html' charset=UTF-8>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<title>集合芸術ANDAZ管理画面</title>
<!-- bootstrap -->
<link href="css/cu... |
<?php
namespace backend\controllers;
use Yii;
use common\models\Image;
use backend\models\ImageSearch;
use yii\web\Controller;
use yii\web\NotFoundHttpException;
use yii\filters\VerbFilter;
use yii\filters\AccessControl;
/**
* ImageController implements the CRUD actions for Image model.
*/
class ImageController ext... |
<?php
/**
* Split Topic
*
* @package bbPress
* @subpackage Theme
*/
?>
<div id="bbpress-forums">
<?php bbp_breadcrumb(); ?>
<?php if ( is_user_logged_in() && current_user_can( 'edit_topic', bbp_get_topic_id() ) ) : ?>
<div id="split-topic-<?php bbp_topic_id(); ?>" class="bbp-topic-split">
<form id="s... |
<?php
namespace App\Http\Controllers\Auth;
use App\Models\User;
use App\Http\Controllers\Controller;
use Illuminate\Support\Facades\Validator;
use Illuminate\Foundation\Auth\RegistersUsers;
/**
* Class RegisterController
*
* @package App\Http\Controllers\Auth
*/
class RegisterController extends Controller
{
... |
<?php
namespace PHPixie\Tests\Framework\Processors\HTTP\Response;
/**
* @coversDefaultClass \PHPixie\Framework\Processors\HTTP\Response\Exception
*/
class ExceptionTest extends \PHPixie\Test\Testcase
{
protected $debug;
protected $http;
protected $template;
protected $configData;
protected ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.