text stringlengths 2 1.03M |
|---|
@extends('template')
@section('title')
{{ "welcome" }}
@endsection
@section('form')
<div class="limiter">
<div class="container-login100">
<div class="wrap-login100 p-t-85 p-b-20">
<form class="login100-form validate-form">
<span class="login100-form-title p-b-70">
Welcome
... |
<?php
/**
* Collection of utility functions.
*/
use Illuminate\Support\Facades\Hash;
/**
* Laravel config_path() function.
*/
if (!function_exists('config_path')) {
function config_path($path = '')
{
return app()->basePath() . '/config' . ($path ? '/' . $path : $path);
}
}
/**
* Laravel publi... |
@extends('layout.app')
@section('content')
@include('templates.nav')
<div class="container mt-5 pt-8">
<form action="{{route('users.store')}}" method="post" enctype="multipart/form-data">
<div class="form-group">
<label for="">Nom</label>
<input type="text" na... |
<?php
/*
* This file is part of Swift.
* (c) 2004-2009 Chris Corbyn
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* A factory for creating CharacterReaders.
*
* @author Chris Corbyn
*/
interface Swift_CharacterReader... |
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Contracts\Encryption\DecryptException;
use Laracasts\Flash\Flash;
use App\User;
class UsersController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
pu... |
<?php
namespace Mapbender\WmsBundle\Component;
use Doctrine\Common\Collections\ArrayCollection;
use Mapbender\CoreBundle\Component\BoundingBox;
use Mapbender\CoreBundle\Entity\Contact;
use Mapbender\WmsBundle\Entity\WmsSource;
use Mapbender\WmsBundle\Entity\WmsSourceKeyword;
use Mapbender\WmsBundle\Entity\WmsLayerSou... |
<?php namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Supporting extends Model {
//
} |
<?php
use Apilayer\Coinlayer\Actions\ListAction;
use Apilayer\Coinlayer\CoinlayerClient;
use Apilayer\Coinlayer\Exceptions\CoinlayerException;
use Apilayer\Coinlayer\Responses\ListResponse;
use Apilayer\Coinlayer\Exceptions\InvalidArgumentException;
use Apilayer\Coinlayer\Enums\HttpSchema;
use Apilayer\Coinlayer\Value... |
@extends('layouts.app')
@section('content')
<section class="content-header">
<h1>
albums
</h1>
</section>
<div class="content">
@include('adminlte-templates::common.errors')
<div class="box box-primary">
<div class="box-body">
<div class="ro... |
<!-- Font Awesome -->
<link rel="stylesheet" href="<?php echo base_url()?>assets/adminpanel/fontawesome-free/css/all.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<!-- Tempusdominus Bbootstrap 4 -->
<link rel="stylesheet" href="<?php echo ... |
<?php declare(strict_types=1);
namespace Surda\Maker\Util;
use Nette\Utils\Strings;
class Str
{
/**
* Looks for suffixes in strings in a case-insensitive way.
*
* @param string $value
* @param string $suffix
* @return bool
*/
public static function hasSuffix(string $value, strin... |
<?php
class UserAgent_test extends CI_TestCase {
protected $_user_agent = 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_7; en-us) AppleWebKit/533.20.25 (KHTML, like Gecko) Version/5.0.4 Safari/533.20.27';
protected $_mobile_ua = 'Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_1 like Mac OS X; en-us) AppleWebKit/532.9 (K... |
<?php if ($widget == 'single_text'): ?>
<?php echo $view['form']->renderBlock('input'); ?>
<?php else: ?>
<div <?php echo $view['form']->renderBlock('container_attributes') ?>>
<?php echo $view['form']->widget($form['date']).' '.$view['form']->widget($form['time']) ?>
</div>
<?php endif ?> |
<?php
namespace App\Http\Controllers\Admin\Carian;
use Illuminate\Http\Request;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use App\Members;
class CarianController extends Controller
{
public function nama() {
// $members = Members::orderBy('nama', 'asc')->paginate(15);
return... |
<?php
namespace App\Controllers\Admin;
use Hleb\Scheme\App\Controllers\MainController;
use Hleb\Constructor\Handlers\Request;
use App\Models\WebModel;
use Base, Content, Translate;
class WebsController extends MainController
{
private $uid;
protected $limit = 25;
public function __construct()
{
... |
<?php
/**
* AquaticPrime PHP implementation
* Creates license file from associative arrays and a public-private keypair
* This implementation requires bcmath, which is included with PHP 4.0.4+
* @author Lucas Newman, Aquatic
* @copyright Copyright © 2005 Lucas Newman
* @license http://www.opensource.o... |
<div class="col-xs-4" align="left">
<p class="text-muted">現在時間</p>
<div class="time" style="margin-top:5%;"></div><br>
<p class="text-muted">距離自動更新時間</p><br>
<div class="countdown" style="margin-top:5%;"></div>
</div>
<div class="col-xs-7" id="logs" align="left">
</div>
<script type="text/javascript">
$(document... |
<x-app-layout>
<x-slot name="header">
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
User edit nbr: {{ $user->id }}
</h2>
</x-slot>
<div class="py-12">
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
<div class="mt-5 md:mt-0 md:col-span-2">
... |
<?php
class Dashboard extends CI_Controller
{
function __construct()
{
parent::__construct();
if ($this->session->userdata('logged') != TRUE) {
$url = base_url('login');
redirect($url);
}
}
public function index()
{
$siswa = $this->db->query("SELECT * FROM users WHERE user_level = '2'");
$data['si... |
</div>
<script src="<?php echo site_url(); ?>js/ckeditor/ckeditor.js"></script>
<script type="text/javascript">
CKEDITOR.replace( 'editor1' );
</script>
</body>
</html> |
<?php
namespace Grav\Plugin\Form;
use Grav\Common\Page\Interfaces\PageInterface;
use Grav\Common\Page\Page;
use Grav\Framework\Form\Interfaces\FormFactoryInterface;
use Grav\Framework\Form\Interfaces\FormInterface;
class Forms
{
/** @var array|FormFactoryInterface[] */
private $types;
/** @var FormInterf... |
<?php
namespace App\Http\Controllers\User;
use Illuminate\Http\Request;
use App\Http\Requests;
use App\Http\Controllers\Controller;
class SalaryController extends Controller
{
//
} |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tampil Biodata Peserta</title>
</head>
<body>
<h1>Hasil Masukan Form Latihan</h1>
<table border="1">
<thead>
<tr>
<th>Nama<... |
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateExpenseCategoriesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('expen... |
@extends('template.admin.master')
@section('main_content')
<!-- page head start-->
<div class="page-head">
<h3 class="m-b-less">
Quản lý sản phẩm
</h3>
<!--<span class="sub-title">Welcome to Static Table</span>-->
... |
<?php
return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' =... |
<?php
declare(strict_types=1);
namespace ataylorme\WordHatHelpers\Contexts;
use PaulGibbs\WordpressBehatExtension\Context\RawWordpressContext;
use PaulGibbs\WordpressBehatExtension\Context\Traits\UserAwareContextTrait;
use PaulGibbs\WordpressBehatExtension\PageObject\LoginPage;
use Behat\Mink\Exception\ExpectationExc... |
<?php if (!defined('BASEPATH')) {
exit('No direct script access allowed');
}
class Submit extends CI_Controller
{
protected $data = Array();
public function __construct()
{
parent::__construct();
if ($this->session->userdata('judge_id') == 0 || $this->session->userdata('judge_id') ==... |
<?php
/**
* Proportional resize
*/
function impression_resample($im, $max_size, $original_width, $original_height) {
$width = $height = $max_size;
$original_ratio = $original_width/$original_height;
if ($width / $height > $original_ratio) {
$width = $height * $original_ratio;
}
else {
$hei... |
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class OrderRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the ... |
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreatePostsTable extends Migration
{
public function up()
{
Schema::create('posts', function (Blueprint $table) {
$table->increments('id');
... |
<?php
/**
* Contains all client objects for the LineItemTemplateService
* service.
*
* PHP version 5
*
* Copyright 2016, Google Inc. All Rights Reserved.
*
* 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 co... |
@extends('layouts.fixe-page')
@section('content')
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card">
<div class="card-header">{{ __('Update Your Sall') }}</div>
<div class="card-body"... |
<?php
use yii\db\Migration;
/**
* Handles the creation of table `users`.
*/
class m181014_183003_create_users_table extends Migration
{
/**
* {@inheritdoc}
*/
public function safeUp()
{
$this->createTable('users', [
'id' => $this->primaryKey(),
'username' => $th... |
<?php
use yii\helpers\Html;
use yii\widgets\ActiveForm;
/* @var $this yii\web\View */
/* @var $model app\models\TypeRealty */
/* @var $form yii\widgets\ActiveForm */
?>
<div class="type-realty-form">
<?php $form = ActiveForm::begin(); ?>
<?= $form->field($model, 'name')->textInput(['maxlength' => true]) ?>... |
<?php
// autoload_real.php @generated by Composer
class ComposerAutoloaderInita41f43922da9efaf48ab2835c693115b
{
private static $loader;
public static function loadClassLoader($class)
{
if ('Composer\Autoload\ClassLoader' === $class) {
require __DIR__ . '/ClassLoader.php';
}
... |
<?php
/*####################################################################
# A simple tic tac toe game
# by Farhan Al Fayyadh & Permadi.com , (hylosakai11@gmail.com)
# created October 2019
####################################################################3
# Global Settings
*/
// Used for iframing the app
$FRAMED=... |
<?php
/*
* This file is part of the Cocorico package.
*
* (c) Cocolabs SAS <contact@cocolabs.io>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Cocorico\CoreBundle\Form\Type;
use Symfony\Component\Form\Extension\Core... |
<?php
declare(strict_types = 1);
namespace FondOfSpryker\Zed\CompanyUsersRestApi\Communication;
use Spryker\Zed\Kernel\Communication\AbstractCommunicationFactory;
/**
* @method \FondOfSpryker\Zed\CompanyUsersRestApi\CompanyUsersRestApiConfig getConfig()
* @method \FondOfSpryker\Zed\CompanyUsersRestApi\Persistence... |
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateCurrenciesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('currencies',... |
<?php
namespace OC\PlatformBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\HttpFoundation\File\UploadedFile;
/**
* Image
*
* @ORM\Table(name="image")
* @ORM\Entity(repositoryClass="OC\PlatformBundle\Repository\ImageRepository")
* @ORM\HasLifecycleCallbacks
*/
class Image
{
/**
*... |
<?php
if( ! defined( 'ABSPATH' ) ) exit;
/**
* User Meta
*
* @author Gijs Jorissen
* @since 1.5
*
*/
class Cuztom_User_Meta extends Cuztom_Meta
{
var $locations;
/**
* Constructor for User Meta
*
* @param string $id
* @param string|array $title
* @param string|array $locations
* @param ... |
@extends('layouts.general')
@section('titulo', 'SISBEGN | Crear Docente')
@section('encabezado', 'Crear Docente')
@section('estilos')
<!-- Select2 -->
<link rel="stylesheet" href="{{ asset('css/select2.min.css') }}">
@endsection
@section('subencabezado', 'Registro')
@section('breadcrumb')
<li class="breadcrumb-ite... |
<?php
use Carbon\CarbonImmutable;
use Kavinsky\TacviewAcmiParser\Acmi;
use Kavinsky\TacviewAcmiParser\AcmiEventRecord;
use Kavinsky\TacviewAcmiParser\Parser\Handlers\EventHandler;
it('matches the sentence', function () {
$sentence = '0,Event=EventType|09090909090|Here is a random text';
$acmi = new Acmi();
... |
<?php
namespace App\Providers;
use Illuminate\Support\Facades\Route;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
class RouteServiceProvider extends ServiceProvider
{
/**
* This namespace is applied to your controller routes.
*
* In addition, it is set as the U... |
<div class="modal fade modal-slide-in-right" aria-hidden="true"
role="dialog" tabindex="-1" id="modal-salida-{{$kard->cod_material}}">
{{Form::Open(array('action'=>array('KardexMatController@update',$kard->cod_material
),'method'=>'PATCH'))}}
<div class="modal-dialog">
<div class="modal-content">
<div class="m... |
<?php
/**
*
* @author j
* Date: 10/7/15
* Time: 10:26 PM
*
* File: boostrap.php
*/
require_once 'vendor/autoload.php'; |
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateCommentsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('comments', fun... |
<?php
namespace OPENLOGI\Salesforce\TokenStore;
use OPENLOGI\Salesforce\AccessToken;
use OPENLOGI\Salesforce\AccessTokenGenerator;
class LocalFile implements StoreInterface
{
/**
* @var AccessTokenGenerator
*/
private $accessTokenGenerator;
/**
* @var string
*/
private $filePath... |
<?php
namespace Drupal\Tests\field\Kernel\Timestamp;
use Drupal\Component\Utility\SafeMarkup;
use Drupal\Component\Utility\Unicode;
use Drupal\Core\Entity\Display\EntityViewDisplayInterface;
use Drupal\Core\Entity\FieldableEntityInterface;
use Drupal\entity_test\Entity\EntityTest;
use Drupal\field\Entity\FieldConfig;... |
<?php
/*
* Copyright 2014 Google Inc.
*
* 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 agreed t... |
<?php
use app\models\User;
return [
'member' => [
'id' => 1,
'email' => 'member@localhost.org',
'auth_key' => 'MMvWBJnS4cnH62hvYJ1pv9bugF7bRPE3',
'password_hash' => Yii::$app->security->generatePasswordHash('member'),
'is_authenticated' => 1,
'status' => User::STATU... |
<script>
$(document).ready(function(){
LoadData();
});
function LoadData(){
$('#tbl_users').DataTable({
"processing": true,
"serverSide": true,
"order": [],
"ajax": {
"url": "<?php echo site_url('users/show_data')?>",
"type": "POST",
... |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class Notificacion extends Model
{
use HasFactory;
protected $table = 'notificaciones';
public const ESTADOS = [
"PEND... |
@extends('layouts.app')
@section('content')
<div class="container">
<div class="flex-center position-ref full-height">
<div class="content">
<div class="title m-b-md">
المستشفيات
</div>
<br>
<table class="ta... |
<?php
namespace App\Http\Middleware;
use Illuminate\Auth\Middleware\Authenticate as Middleware;
class Authenticate extends Middleware
{
/**
* Get the path the user should be redirected to when they are not authenticated.
*
* @param \Illuminate\Http\Request $request
* @return string|null
... |
<?php
namespace App\Providers;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Support\Facades\Route;
class RouteServiceProvider extends ServiceProvider
{
/**
* This namespace is applied to your controller routes.
*
* In addition, it is set as th... |
<?php $view->script('contract-edit', 'contract:app/bundle/contract-edit.js', ['vue', 'editor', 'uikit']) ?>
<?php $view->style('contract-edit', 'contract:assets/css/font-awesome.min.css') ?>
<?php $view->render('head') ?>
<form id="contract-edit" class="uk-form uk-form-horizontal" v-validator="form" @submit.prevent="s... |
<?php
declare(strict_types=1);
namespace Rector\PHPOffice\Rector\MethodCall;
use PhpParser\Node;
use PhpParser\Node\Expr\MethodCall;
use PHPStan\Type\ObjectType;
use Rector\Core\Rector\AbstractRector;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefin... |
<?php
use App\Models\Post;
function getPages(){
$pages = Post::where('post_type','page')->where('is_published','1')->get();
return $pages;
} |
<?php
/**
* user/index.php
*
* @package default
*/
$page_title = 'Redirect Page';
require_once '../includes/load.php';
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="refresh" content="1" url="../users/index.php">
</head>
<body onload="window.location = '../u... |
<?php
namespace App\Repositories\Front;
use App\Contracts\Front\UniversityStudentContract;
use App\Model\Application;
use App\Model\User;
use App\Model\StudyArea;
use App\Model\Exam;
use App\Model\Country;
use App\Model\EducationLevel;
use App\Model\GradingScheme;
class UniversityStudentRepository implements Universi... |
<?php
namespace Gaufrette\Adapter;
use Gaufrette\File;
use Gaufrette\Filesystem;
/**
* Interface for the file creation class.
*
* @author Leszek Prabucki <leszek.prabucki@gmail.com>
*/
interface FileFactory
{
/**
* Creates a new File instance and returns it.
*
* @param string $key
* @... |
<?php
/**
* Контроллер AdminUserController
* Управление пользователями в админпанели
*/
class AdminUserController extends AdminBase
{
/**
* Action для страницы "Управление пользователями"
*/
public function actionIndex()
{
// Проверка доступа
self::checkAdmin();
// Получ... |
<?php
namespace Tests;
use PHPUnit\Framework\TestCase;
use Fize\IO\OB;
use GuzzleHttp\Client;
class TestOB extends TestCase
{
public function testClean()
{
OB::start();
echo '1';
echo '2';
OB::clean();
echo '3';
echo '4';
$ob = OB::getClean();
... |
<?php
/**
* amadeus-ws-client
*
* Copyright 2015 Amadeus Benelux NV
*
* 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 requir... |
<?php
session_start();
include "./db/conect.php";
include './inc/incLogin.php';
?>
<?php
if(isset($_POST['dangky'])) {
$name = $_POST['name'];
$phone = $_POST['phone'];
$address = $_POST['address'];
$password = md5($_POST['password']);
$email = $_POST['email'];
$note = $_POST['note'];
$... |
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class RbacRoleUser extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create(config('rbac.database.... |
<?php
defined('BASEPATH') or exit('No direct script access allowed');
class Videoapp extends CI_Controller
{
public function __construct()
{
parent::__construct();
$this->load->model('globalmodel');
}
public function check_mobile(){
$post=$this->input->post();
if($... |
<?php
namespace App\Http\Middleware;
use Closure;
class CheckRole
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
if($request->user() ===... |
@extends('admin::layout')
@section('h1')
{{ $mode=='translate'?'翻译':($mode=='edit'?'编辑':'新建') }}内容 <span id="content_locale">[ {{ langname($content_value_langcode) }} ]</span>
@endsection
@section('main_content')
<el-form id="main_form" ref="main_form"
:model="node"
:rules="rules"
label-position="top"... |
<?php
namespace App\Http\Requests;
use App\Rules\NombreRule;
use Illuminate\Foundation\Http\FormRequest;
class ComunaRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
... |
@include('includes.head')
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="{{ route('logout') }}"
onclick="event.preventDefault();
document.getElementById('logout-form').submit();">
{{ __('Logout') }}
</a>
<form id="logout-form" action="{{ route('... |
<?php
$nama=$rs_user['nama'];
$jabatan=$rs_user['jabatan'];
?>
<aside id="leftsidebar" class="sidebar">
<!-- User Info -->
<div class="user-info">
<div class="image">
<img src="<?php echo base_url();?>assets/images/user/<?php echo $rs_user['us... |
<?php
declare(strict_types=1);
/**
* This file is part of Hyperf.
*
* @link https://www.hyperf.io
* @document https://hyperf.wiki
* @contact group@hyperf.io
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/
namespace App\Kernel\Log;
use Hyperf\Logger\LoggerFactory as HyperfLoggerFactory;... |
<?php
/**
* Created by PhpStorm.
* User: sergio.rodenas
* Date: 12/5/18
* Time: 0:00
*/
namespace Rodenastyle\StreamParser;
use Rodenastyle\StreamParser\Parsers\CSVParser;
use Rodenastyle\StreamParser\Parsers\JSONParser;
use Rodenastyle\StreamParser\Parsers\XMLParser;
class StreamParser
{
public static functi... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laporan Penjualan</title>
<!-- Bootstrap Core CSS -->
<link href="<?php echo base_url().'assets... |
@extends('layout.main')
@section('content')
<style type="text/css">
.file {
padding-bottom: 2rem !important;
border: 1px dashed crimson !important;
}
</style>
<div class="container page__container page-section pb-0">
<ol class="breadcrumb p-0 m-0">
<li class="breadcrumb-item"><a hre... |
<?php require_once("../includes/braintree_init.php"); ?>
<html>
<?php require_once("../includes/head.php"); ?>
<body>
<?php require_once("../includes/header.php"); ?>
<div class="wrapper">
<div class="checkout container">
<header>
<h1>Hi, <br>Let's test a transaction</h1>... |
<?php
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
/* Master Tables */
$this->call(RelationTypesSeeder::class);
$this->call(PaymentMethodsSeeder::class);
... |
<?php
$modificar = $_GET['modificar'];
$eliminar = $_GET['eliminar'];
$visibleM = '';
$visibleE = '';
if ($modificar == 1)
$visibleM = 'inline-block;';
else
$visibleM = 'none;';
if ($eliminar == 1)
$visibleE = 'inline-block;';
else
$visibleE = 'none;';... |
<?php
/*
* This file is part of Totara Learn
*
* Copyright (C) 2018 onwards Totara Learning Solutions LTD
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License... |
@if(\Session::has('message'))
<div class="row" style="padding-top: 80px">
<div class="container">
<div class="alert alert-success">
{{ \Session::get('message') }}
</div>
</div>
</div>
@endif |
<!DOCTYPE html>
<html lang="{{ app()->getlocale() }}">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="csrf_token" content="{{ csrf_token() }}">
<title>@yield('title','MTgiant... |
<?php
// This file was auto-generated from sdk-root/src/data/appstream/2016-12-01/docs-2.json |
<div class="w-full h-screen flex items-center justify-center">
<form class="w-full md:w-1/3 bg-white rounded-lg" method="post">
<input name="action" value="login" type="hidden">
<input name="csrf" value="<?= $_SESSION['cn3-wi-csrf'] ?>" type="hidden">
<div class="flex font-bold justify-cente... |
<?php
/**
* HasOnlyReadOnly
*
* PHP version 7.1
*
* @package OpenAPIServer\Model
* @author OpenAPI Generator team
* @link https://github.com/openapitools/openapi-generator
*/
/**
* NOTE: This class is auto generated by the openapi generator program.
* https://github.com/openapitools/openapi-generator
*... |
<div class="block-flat">
<form class="form-horizontal lookUpFrmContent" id="groups" method="post">
<span class="frmMsg"></span>
<br>
<div class="form-group">
<label class="col-sm-3 control-label">Group Name <span style="color: red">*</span></label>
<div class="col-s... |
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddCompleteToTaskTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('tasks', func... |
<?php
namespace DedexBundle\Entity\Ern382;
/**
* Class representing ArtistRoleType
*
* A Composite containing details of an ArtistRole.
* Note: This can be used in a DdexMessage in relation to any Performance or Fixation
* either of which may form the whole or part of the Resource itself. Example: if an
* 'A... |
<?php
namespace App\Core\Http\Controllers\Auth;
use App\Core\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\ResetsPasswords;
use Illuminate\Http\Request;
class ResetPasswordController extends Controller
{
/*
|--------------------------------------------------------------------------
| Passwo... |
<a href="{{route('subscribe.import')}}" class="btn btn-sm btn-twitter" title="导入记录">
<i class="fa fa-download"></i><span class="hidden-xs"> 导入记录</span>
</a> |
<?php
/**
* Copyright © 2015 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Sales\Controller\Adminhtml\Order;
use Magento\Framework\App\ResponseInterface;
use Magento\Framework\App\Filesystem\DirectoryList;
use Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCo... |
<?php
namespace EolabsIo\AmazonMws\Domain\Orders\Concerns;
trait InteractsWithOrderStatus
{
/** @var array */
private $orderStatus = [];
public function orderStatusAdd($value)
{
array_push($this->orderStatus, $value);
}
public function withOrderStatusAll(): self
{
$this-... |
<?php
namespace App\Observers;
use App\Models\Plan;
use Illuminate\Support\Str;
class PlanObserver
{
/**
* Handle the plan "creating" event.
*
* @param \App\Models\Plan $plan
* @return void
*/
public function creating(Plan $plan)
{
$plan->url = Str::kebab($plan->name);
... |
<!-- footer area start-->
<footer>
<div class="footer-area">
<!-- <p>© Copyright 2018. All right reserved. Template by <a href="https://colorlib.com/wp/">Colorlib</a>.</p> -->
<p>© Copyright 2020. All right reserved. System Analyst18 UNUJA </p>
</div>
</f... |
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Session;
use Illuminate\Support\Facades\DB;
use App\Barang;
use App\Kategori;
use File;
use DataTables;
class AdminController extends Controller
{
//
public function index(){
if(!Session::get('sud... |
<?php
namespace Urbem\PatrimonialBundle\Resources\config\Sonata\Almoxarifado;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM;
use Sonata\AdminBundle\Form\FormMapper;
use Sonata\AdminBundle\Route\RouteCollection;
use Sonata\CoreBundle\Validator\ErrorElement;
use Symfony\Component\HttpFoundation\Re... |
<?= $this->extend('admin/template'); ?>
<?= $this->section('content'); ?>
<!-- Content Wrapper -->
<div id="content-wrapper" class="d-flex flex-column">
<!-- Main Content -->
<div id="content">
<!-- Topbar -->
<?= $this->include('navbar'); ?>
<!-- End of Topbar -->
<!-- Begin... |
<?php
/**
* Created by PhpStorm.
* User: 南丞
* Date: 2019/3/6
* Time: 17:11
*
*
* _ooOoo_
* o8888888o
* 88" . "88
* (| ^_^ |)
* O\ = /O
* ____/`---'\____
* .' \\| |// ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.