text stringlengths 2 1.03M |
|---|
@extends('Admin::layouts.layout')
@section('content')
<section class="content-header">
<h1>Country</h1>
</section>
<section class="content">
<div class="box">
<div class="container-fluid">
{!!Form::open(array('route'=>array('admin.country.store'),'class'=>'formAdmin form-horizontal','files'=>true))!!}
<di... |
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| DATABASE CONNECTIVITY SETTINGS
| -------------------------------------------------------------------
| This file will contain the settings needed to access your database.
|
|... |
<?php
namespace SugarCli\Utils;
use Humbug\SelfUpdate\Exception\HttpRequestException;
use Humbug\SelfUpdate\Strategy\GithubStrategy;
use Humbug\SelfUpdate\Updater;
/**
* Overwride GithubStrategy to use curl for phar download.
* humbug_get_contents doesn't support redirections on php < 5.6
*/
class CurlGithubStrate... |
<?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
use DB;
use Illuminate\Support\Facades\Route;
class UserSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
DB::table('roles')->insert([
['name'=>'supera... |
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
|--------------------------------------------------------------------------
| Base Site URL
|--------------------------------------------------------------------------
|
| URL to your CodeIgniter root. Typically this will be your base URL,
| WITH... |
<?php
if (strcmp($_SERVER['SCRIPT_FILENAME'], __FILE__) == 0) {
header('Status: 301 Moved Permanently');
header('Location: ../index');
exit();
}
/*
* Provide commonly usable code to implement DRY principle.
*/
/**
* Constants for flash message severities.
*/
define('FLASH_INFO', "info");
define('FLASH... |
<?php
class Fungsi
{
protected $ci;
public function __construct()
{
$this->ci = &get_instance();
}
function user_login()
{
$this->ci->load->model('user_m');
$id_user = $this->ci->session->userdata('id_user');
$user_data = $this->ci->user_m->get($id_user)->row()... |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class PenelitiPengabdiMagister extends Model
{
use HasFactory;
protected $table = 'peneliti_pengabdi_magister';
protected $fillable = [
];
public function user(){
... |
@extends('layouts.app', ['activePage' => 'klasifikasiData', 'titlePage' => __('Dashboard'), 'pageName' => 'Klasifikasi'])
@section('content')
<div class="row">
<div class="container">
<h2 class="text-center my-5">Data Klasifikasi</h2>
<div class="col-lg-8 mx-auto my-5">
<div class="row"... |
<?php
return [
'syae', 'syaeg', 'syaegg', 'syaegs', 'syaen', 'syaenj', 'syaenh', 'syaed', 'syael', 'syaelg', 'syaelm', 'syaelb', 'syaels', 'syaelt', 'syaelp', 'syaelh',
'syaem', 'syaeb', 'syaebs', 'syaes', 'syaess', 'syaeng', 'syaej', 'syaec', 'syaek', 'syaet', 'syaep', 'syaeh', 'seo', 'seog', 'seogg', 'se... |
<?php
namespace Mbright\Validation\Rule\Validate;
class Upload implements ValidateRuleInterface
{
/**
* Validates that the value is an array of file-upload information, and if a file is referred to, that is actually
* an uploaded file.
*
* The required keys are 'error', 'name', 'size', 'tmp_na... |
<?php
/**
* Class ActionScheduler_NullAction
*/
class ActionScheduler_NullAction extends ActionScheduler_Action {
public function __construct( $hook = '', array $args = array(), ActionScheduler_Schedule $schedule = null ) {
$this->set_schedule( new ActionScheduler_NullSchedule() );
}
public function execute()... |
<?php
// Check for empty fields
if(empty($_POST['name']) ||
empty($_POST['email']) ||
empty($_POST['phone']) ||
empty($_POST['message']) ||
!filter_var($_POST['email'],FILTER_VALIDATE_EMAIL))
{
echo "No arguments Provided!";
return false;
}
$name = $_POST['name'];
$email_address = $_POST['em... |
<?php
include('connection.php');
$db=$conn;
function getPro(){
global $db;
$get_product="select * from job_table order by 1 DESC LIMIT 0,15";
$run_products=mysqli_query($db,$get_product);
while ($row_product=mysqli_fetch_array($run_products)) {
$job_id=$row_product['job_id'];
$job_name=$... |
<?php
return [
'backup' => [
/*
* The name of this application. You can use this name to monitor
* the backups.
*/
'name' => env('APP_NAME', 'laravel-backup'),
'source' => [
'files' => [
/*
* The list of directorie... |
<?php
/* SonataAdminBundle:Core:user_block.html.twig */
class __TwigTemplate_65f2abaebef85bbba42640d425516f7b9548e6bbc41a383009263819fc737d9a extends Twig_Template
{
public function __construct(Twig_Environment $env)
{
parent::__construct($env);
$this->parent = false;
$this->blocks = ... |
@extends('admin.layout.admin')
@section('content')
<h3>Edite About Items</h3>
<div class="row">
<div class="col-md-8 col-md-offset-2">
{!! Form::open(['route'=>['about.update',$items->id],'method'=>'Post','enctype'=>'multipart/form-data']) !!}
{{ Form::hidden('_method','Put') }}
{{ Form::hidden('oldDrImage'... |
<?php
namespace PlainCommands;
use PhpOption\Option;
use PlainCommands\Reflection\Type;
class PropertyOption extends CommandOption
{
public function getDefaultValue(): Option
{
return Option::fromValue(
$this->definition->getValue($this->container->getObject())
);
}
prote... |
<?= $this->extend('layout/admin/template_view'); ?>
<?= $this->section('custom_css'); ?>
<link rel="stylesheet" href="<?= base_url('assets/css/page-knowledge-base.min.css'); ?>">
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.25/css/dataTables.bootstrap4.min.css">
<style>
.dataTables_length {
... |
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Support\Str;
class Company extends Model
{
//
//protected $table = "table";
//protected $primaryKey = array('id');
protected $primaryKey = "id";
protected $keyType = 'string';
... |
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class ShaflagcatTranslation extends Model
{
public $timestamps = false;
protected $fillable = ['name'];
} |
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class CreateSubscriptionsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('subscriptions', function (Blueprint $table) {
... |
<?php
include_once "\x55\164\x69\x6c\151\164\151\x65\x73\x2e\x70\150\x70";
include_once "\x78\155\x6c\163\145\143\154\151\142\x73\56\x70\150\160";
use RobRichards\XMLSecLibs\XMLSecurityKey;
use RobRichards\XMLSecLibs\XMLSecurityDSig;
use RobRichards\XMLSecLibs\XMLSecEnc;
class SAML2SPLogoutRequest
{
private $tagN... |
<?php
// autoload.php @generated by Composer
require_once __DIR__ . '/composer/autoload_real.php';
return ComposerAutoloaderInit3a06834a5e1084c0134b5854e0aa797d::getLoader(); |
<?php
/*********************************************************************
* FPDF easyTable *
* *
* Version: 2.0 *
* Date: 12-10-2017 ... |
<?php
// autoload_psr4.php @generated by Composer
$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
'yii\\swiftmailer\\' => array($vendorDir . '/yiisoft/yii2-swiftmailer'),
'yii\\redis\\' => array($vendorDir . '/yiisoft/yii2-redis'),
'yii\\jui\\' => array($vendorDir .... |
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css" integrity="sha384-Smlep5jCw/wG7hdkwQ/Z5nLIefveQRIY9nfy6xoR1uRYBtpZgI6339F5dgvm/e9B" crossorigin="anonymous">
... |
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model common\models\User */
$this->title = Yii::t('app', 'Update {modelClass}: ', [
'modelClass' => 'User',
]) . $model->id;
$this->params['breadcrumbs'][] = ['label' => Yii::t('app', 'Users'), 'url' => ['index']];
$this->params['breadcrumbs'][] ... |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Ruang extends Model
{
protected $table = "ruangs";
protected $primaryKey = 'kode_ruang';
protected $keyType = 'string';
protected $fillable = [
'kode_ruang',
... |
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Produk extends CI_Controller {
public function __construct()
{
parent::__construct();
$this->load->model('Produk_model');
$this->load->model('Kategori_model');
$this->simple_login->cek_login();
}
... |
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
namespace ... |
<?php
use Psr\Log\LoggerInterface;
class ExampleLogger implements LoggerInterface
{
public function emergency($message, array $context = [])
{
}
public function alert($message, array $context = [])
{
}
public function critical($message, array $context = [])
{
}
public functi... |
<?php
class EMS_Pay_Model_Method_Paypal extends EMS_Pay_Model_Method_Abstract
{
protected $_code = EMS_Pay_Model_Config::METHOD_PAYPAL;
} |
<?php
namespace App\Http\Controllers\Auth;
use App\Models\User;
use App\Http\Controllers\Controller;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Facades\Validator;
use Illuminate\Foundation\Auth\RegistersUsers;
class RegisterController extends Controller
{
... |
@extends('panel.index')
@section('breadcrumbs', Breadcrumbs::render('common.panel-sub','Категории'))
@section('panel_content')
<div class="table-responsive information-blocks sections-panel">
<form action="/panel/supplier/sections/add" method="post">
{{ csrf_field() }}
<table clas... |
<?php
/**
* URL Field Object
*
* @package FES
* @subpackage Classes/Fields
* @copyright Copyright (c) 2017, Easy Digital Downloads, LLC
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) exit;
/**
* FES_Url_Field Class.... |
<!-- Menu lateral Administração-->
<div class="navbar-default sidebar" role="navigation">
<div class="sidebar-nav navbar-collapse">
<ul class="nav" id="side-menu">
<li>
<a href="{{ url('produtor/vendas') }}">Verificar vendas</a>
... |
@extends('layouts.main')
@section('team')
<!-- Team-->
@if ($team->count())
<section class="page-section bg-light" id="team">
<div class="container">
<div class="text-center">
<h2 class="section-heading text-uppercase">{{ $team[0]->title1 }}</h2>
... |
@extends('products.layout')
@section('content')
<div class="row">
<div class="col-lg-12 margin-tb">
<div class="pull-left">
<h2>Add New Product</h2>
</div>
<div class="pull-right">
<a class="btn btn-primary" href="{{ route('products.index') }}"> Back</a>
</... |
--TEST--
Bug #45862 (get_class_vars is inconsistent with 'protected' and 'private' variables)
--FILE--
<?php
class Ancestor {
function test() {
var_dump(get_class_vars("Tester"));
var_dump(Tester::$prot);
}
}
class Tester extends Ancestor {
static protected $prot = "protected var";
static private $pri... |
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model app\models\TasteProduct */
$this->title = 'Создание вкуса товара';
$this->params['breadcrumbs'][] = ['label' => 'Товары', 'url' => ['product/index']];
$this->params['breadcrumbs'][] = ['label' => $model->product->title, 'url' => ['product/view... |
<?php
/*
* This file is part of the Slack API library.
*
* (c) Cas Leentfaar <info@casleentfaar.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace CL\Slack\Payload;
use CL\Slack\Model\Channel;
/**
* @author Cas Lee... |
@extends('admin.layouts.default', ['title' => 'Dashboard'])
@section('content')
<!-- Content Header (Page header) -->
<div class="content-header">
<div class="container-fluid">
<div class="row mb-2">
<div class="col-sm-6">
{{-- <h1 class="m-0 text-dark">A... |
<?php
/**
* Root directory of Drupal installation.
*/
define('DRUPAL_ROOT', getcwd());
require_once './includes/bootstrap.inc';
// Register our shutdown function so that no other shutdown functions run before this one.
// This shutdown function calls exit(), immediately short-circuiting any other shutdown functions,
... |
<?php
/*if(empty($_REQUEST['param'])){
$param = '';
} else {
$param = $_REQUEST['param'];
}*/
$paramValues = array();
$i=0;
foreach ($parameterValues as $value) {
for($i=0; $i<10; $i++){
$paramValues[$i] = $value["Param".($i+1)];
}
}
foreach ($parameterChartData as $paramData) {
$chartData['param... |
<?php defined('SYSPATH') OR die('No direct access allowed.');
/**
* @see https://github.com/sendgrid/sendgrid-php - PHP Configuration
* @see https://sendgrid.com/docs/API_Reference/Web_API_v3/API_Keys/index.html - Getting API KEYS
*/
return array
(
'apiKey' => '',
'senderName' => 'CodeX Media',
's... |
@extends('backend.main')
@section('title', 'UNY REPORT | Edit data ')
@section('content')
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
Daftar Surat Masuk dan Surat Keluar serta Surat Tugas & SPPD
<small>... |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Lead extends Model
{
use HasFactory;
protected $fillable = [
'product_id',
'supplier_id',
'customer_id',
'quantity',
'price',
'note... |
<?php
return [
'@class' => 'Grav\\Common\\File\\CompiledYamlFile',
'filename' => 'C:/xampp/htdocs/part0n.xyz/rismose/user/plugins/admin/languages/ja.yaml',
'modified' => 1602113430,
'data' => [
'PLUGIN_ADMIN' => [
'ADMIN_BETA_MSG' => 'これはベータリリースです。稼働中サイトでは、自己責任においてご利用ください。',
... |
@extends('adminlte::page')
@section('title', 'Blog')
@section('content_header')
<h1>Blog</h1>
@stop
@section('content')
<p>Bienvendio</p>
@stop
@section('css')
<link rel="stylesheet" href="/css/admin_custom.css">
@stop
@section('js')
<script> console.log('Hi!'); </script>
@stop |
<?php
class footer_loginController extends Controller {
public function index() {
$this->data['js'] = $this->config->js;
return $this->load->view('common/footer_login', $this->data);
}
}
?> |
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Client extends Model
{
use SoftDeletes;
protected $fillable = [
"rut", "name", "email", "telephone", "location", "address"
];
public function orders(){
return $this-... |
@extends('comet.layouts.app.app')
@section('comet-content')
<section>
<div class="container">
<div class="row">
<div class="col-md-8">
<div class="blog-posts">
@foreach ($allpostdata as $postdata)
@php
$featured = json_decode($postdata -> f... |
<nav class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
... |
<?php
/**
* Created by PhpStorm.
* User: L丶lin
* Date: 2018/10/12
* Time: 16:51
*/
namespace app\common\model\motion;
use think\Model;
class Module extends Model
{
// 开启自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
protected $name = 'motion_module';
// 定义时间戳字段名
protected $createTime = 'c... |
<?php
namespace Tests\Unit;
use App\Interfaces\Models\Country\CountryInterface;
use App\Models\Country\Country;
use App\Models\Currency\Currency;
use App\Models\LocalizableModel;
use App\Models\Translations\CountryTranslation;
use Tests\TestCase;
class CountryUnitTest extends TestCase
{
/**
* @test
*/
... |
@extends('layouts.auth')
@section('content')
<div class="auth">
<h1>Зарегистрироваться</h1>
<h4>Уже есть аккаунт? <a href="{{ route('login') }}">Вход</a></h4>
<form method="POST" action="{{ route('register') }}" class="auth-form">
@csrf
<div class="auth-form-input-... |
<?php
namespace App\Http\Controllers\Admin;
use Illuminate\Http\Request;
use App\Http\Controllers\BaseController;
use App\Repositories\Admin\Datatable\DatatableInterface;
class DatatableController extends BaseController
{
protected $datatable;
public function __construct(DatatableInterface $datatable)
{... |
<!doctype html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Nunito:... |
<?php
/**
* Created by PhpStorm.
* User: dendude
* Date: 13.11.16
* Time: 18:20
*/
namespace app\components;
use yii\base\Component;
use yii\helpers\Json;
class ReCaptcha extends Component
{
const REQUEST_URL = 'https://www.google.com/recaptcha/api/siteverify';
const PUBLIC_KEY = '6LfQ3hEUAAAAAAV_c2DyiZ... |
<?php if ( ! defined('IN_DILICMS')) exit('No direct script access allowed');
/**
* DiliCMS
*
* 一款基于并面向CodeIgniter开发者的开源轻型后端内容管理系统.
*
* @package DiliCMS
* @author DiliCMS Team
* @copyright Copyright (c) 2011 - 2012, DiliCMS Team.
* @license http://www.dilicms.com/license
* @link http://www... |
<?php
namespace App\Http\Controllers\Admin;
use App\Category;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
class CategoryController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
... |
<?php
/*
Plugin Name: Shortcodes Ultimate
Plugin URI: http://gndev.info/shortcodes-ultimate/
Version: 4.10.2
Author: Vladimir Anokhin
Author URI: http://gndev.info/
Description: Supercharge your WordPress theme with mega pack of shortcodes
Text Domain: shortcodes-ultimate
Domain Path: /languages
Licen... |
<?php
declare(strict_types=1);
namespace Overblog\GraphQLBundle\Tests\ExpressionLanguage\ExpressionFunction\Security;
use Overblog\GraphQLBundle\ExpressionLanguage\ExpressionFunction\Security\IsFullyAuthenticated;
use Overblog\GraphQLBundle\Tests\ExpressionLanguage\TestCase;
class IsFullyAuthenticatedTest extends T... |
@extends('layouts.app')
@section('content')
<div class="container container-page">
<div class="page-header">
<h3>Editar usuario</h3>
</div>
<div class="col-lg-8">
@if(count($errors))
<div class="alert alert-danger">
<ul>
@... |
<?php
/**
*
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the licens... |
<?php
require_once $_SERVER['DOCUMENT_ROOT'] . '/assets/includes/overall_header.php';
$materials = array_map('array_shift', $mysqli->query("SELECT type_name FROM ws_material_types ORDER BY type_name ASC")->fetch_all());
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="icon" href="/favicon.pn... |
@extends('layouts.app_citas')
@section('title', 'Agendas Medica')
@section('styles')
<link rel="stylesheet" href="{{ asset('css/w3.css') }}">
@endsection
@section('content')
@foreach($especialidades as $especialidad)
<div class="col-md-6 col-md-4">
<div class="w3-card-8 w3-blue panel panel-primary">
... |
@extends('layout')
@section('content')
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card">
<div class="card-header">{{ __('Nouveau mot de passe') }}</div>
<div class="card-body">
@if (ses... |
<?php
/**
* User: casperlai
* Date: 2016/9/16
* Time: 上午12:19
*/
namespace Casperlaitw\LaravelFbMessenger\Messages;
use Casperlaitw\LaravelFbMessenger\Contracts\Messages\MessageInterface;
use Casperlaitw\LaravelFbMessenger\Exceptions\UnknownTypeException;
/**
* Class Button
* @package Casperlaitw\LaravelFbMess... |
<div class="breadcrumbs">
<div class="breadcrumbs-inner">
<div class="row m-0">
<div class="col-sm-4">
<div class="page-header float-left">
<div class="page-title">
<h1>Table</h1>
</div>
</div>
... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootst... |
<?php
/* @var $model asb\yii2\modules\news_1b_160430\models\News */
/* @var $modelsI18n array of asb\yii2\modules\news_1b_160430\models\NewsI18n */
/* @var $this yii\web\View */
/* @var $form yii\widgets\ActiveForm */
/* @var $activeTab string */
use asb\yii2\common_2_170212\widgets\ckeditor\Ck... |
<?php
namespace Aliyun\DayuSDK\MNS\Responses;
use Aliyun\DayuSDK\MNS\Constants;
use Aliyun\DayuSDK\MNS\Model\TopicAttributes;
use Aliyun\DayuSDK\MNS\Exception\MnsException;
use Aliyun\DayuSDK\MNS\Exception\TopicNotExistException;
use Aliyun\DayuSDK\MNS\Responses\BaseResponse;
use Aliyun\DayuSDK\MNS\Common\XMLParser;
... |
<?php namespace App\Http\Livewire\Markets;
use App\Models\BaseResources;
use App\Models\Ingots;
use App\Models\Items;
use App\Models\Locations;
use App\Models\MarketData;
use App\Models\Ores;
use App\Models\ResourceTypes;
use Livewire\Component;
class AddMarketDataPoint extends Component
{
public $location;
p... |
<?php
namespace Drupal\system\Tests\Image;
/**
* Tests image toolkit functions.
*
* @group Image
*/
class ToolkitTest extends ToolkitTestBase {
/**
* Check that ImageToolkitManager::getAvailableToolkits() only returns
* available toolkits.
*/
public function testGetAvailableToolkits() {
$manager ... |
<?php
namespace Statamic\Addons\LinkOgData;
use Statamic\Extend\API;
class LinkOgDataAPI extends API
{
private $linkogdata;
protected function init()
{
$this->linkogdata = new LinkOgData;
}
public function getOgData($url)
{
return $this->linkogdata->getOgData($url);
}
} |
<?php
namespace Tests\AppBundle\Form\Filter\Benchmark;
use AppBundle\Filter\Benchmark\BenchmarkMessageFilter;
use AppBundle\Form\Filter\Benchmark\BenchmarkMessageFilterType;
use Tests\AppBundle\Form\Filter\Admin\Base\BaseFilterTypeTest;
class BenchmarkMessageFilterTypeTest extends BaseFilterTypeTest {
const NAME =... |
<?php if (!defined('THINK_PATH')) exit(); /*a:2:{s:73:"D:\TP5\twothink\public/../application/admin/view/default/index\index.html";i:1496373782;s:73:"D:\TP5\twothink\public/../application/admin/view/default/public\base.html";i:1534055821;}*/ ?>
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title><?php ec... |
<?php
namespace AlibabaCloud\Cassandra;
/**
* @method string getClusterId()
* @method $this withClusterId($value)
*/
class PurgeCluster extends Rpc
{
} |
<?php
namespace evaluaUcab\ProfesorBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Calificacion
*
* @ORM\Table()
* @ORM\Entity
*/
class Calificacion
{
/**
* @var integer
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
pri... |
<?php namespace Frozennode\Administrator;
use Frozennode\Administrator\Config\Factory as ConfigFactory;
use Frozennode\Administrator\Fields\Factory as FieldFactory;
use Frozennode\Administrator\DataTable\Columns\Factory as ColumnFactory;
use Frozennode\Administrator\Actions\Factory as ActionFactory;
use Frozennode\Adm... |
<?php
namespace App\Http\Controllers\Api;
use App\Http\Controllers\Controller;
use App\Post;
use Illuminate\Http\Request;
class PostController extends Controller
{
public function index()
{
$data = Post::all();
foreach($data as $post) {
// In questo modo rimuovo l'html ... |
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class CategoryRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get t... |
<div class="modal fade" id="staticBackdropcocao" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropcocao" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-... |
<?php
namespace pavlatch\Exception;
use pavlatch\Response;
use Throwable;
class ServerException extends \Exception
{
public function __construct($message = "", $code = 500, Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
public function getResponse(): Respons... |
<?php
use yii\helpers\Html;
use yii\widgets\DetailView;
use chd7well\master\widgets\HistoryWidget;
/* @var $this yii\web\View */
/* @var $model chd7well\sales\models\Bundle */
$this->title = Yii::t('sales', 'Bundle') . $model->bundle_name;
$this->params['breadcrumbs'][] = ['label' => Yii::t('sales', 'Bundles'), 'url... |
<?php
namespace App\Http\Controllers;
use App\Models\Titre;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
class TitreController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
... |
<?php
return [
'posts' => 'Posts',
'categories' => 'Categories',
]; |
<?php
/**
* Fastly CDN for Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Fastly CDN for Magento End User License Agreement
* that is bundled with this package in the file LICENSE_FASTLY_CDN.txt.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Fastly CDN to newe... |
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel 8 training</title>
<link rel="shortcut icon" href="{{ asset('img/favicon.png') }}">
... |
<?php
/* Cachekey: cache/stash_default/doctrine/dc2_0c17f1a21876905a61ac7ac46afa4443_[3310e33705751e3b3f5b447700c689a6][1]/ */
/* Type: array */
/* Expiration: 2021-02-16T14:25:43+05:30 */
$loaded = true;
$expiration = 1613465743;
$data = array();
/* Child Type: object */
$data['return'] = unserialize(base64_deco... |
<section id="permohonan" class="contact" style="margin-top:50px;">
<div class="container">
<div class="section-title" data-aos="fade-up">
<h2>Profile</h2>
<p>Pastikan kontak anda aktif agar donatur atau penerima donasi dapat menghungi anda.</p>
</div>
<div class="row justify-co... |
@extends('layout')
@section('contenido')
<h1>Login</h1>
@stop |
<p> </p> |
<div class="row">
<div class="container">
<div class="card col-lg-11">
<div class="card-header">
<div class="card-body">
<button type="button" class="btn btn-sm btn-success shadow mb-4 float-right" data-toggle="modal" data-target="#adminTambahModal">
... |
<?php
namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\AuthenticatesUsers;
class LoginController extends Controller
{
/*
|--------------------------------------------------------------------------
| Login Controller
|----------------------------... |
<?php
namespace App\Http\Controllers\Settings;
use MegaHelpers;
use App\Lib\Api\Radarr;
use App\SettingsRadarr;
use App\Http\Controllers\Controller;
use App\Http\Requests\Api\Settings\RadarrQualityRequest;
class RadarrQualityController extends Controller
{
/**
* Store a newly created resource in storage.
... |
@extends('master')
@section('content')
<div class="title">
<h3>CUSTOMER</h3>
</div>
<p>
<a href="/customer/create">New Customer</a>
</p>
@if(session()->has('status'))
<p class="help is-success">{{ session()->get('status')}}</p>
@endif
<hr>
{{$x->links('paginators.bulma')}}
{{-- {{$x->links()}} --}}
</hr>
... |
<?php
defined('BASEPATH') or exit('No direct script access allowed');
?>
<!DOCTYPE html>
<div style="float:right">
<h2>
<button class="btn btn-success" onClick="window.location.reload()">Refresh</button>
</h2>
</div>
<div class="clearfix"></div>
</div>
<div class="x_content">
<table id="tableDT" cla... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.