text
stringlengths
2
1.03M
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateRscTypesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('rsc_types', fu...
<?php namespace Database\Seeders; use Illuminate\Support\Facades\DB; use Illuminate\Database\Seeder; class BarangSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { $barang = [ ['nama'=>'Honda Vario', 'varian'=>'150CC',...
<?php /** * DO NOT EDIT THIS FILE! * * This file was automatically generated from external sources. * * Any manual change here will be lost the next time the SDK * is updated. You've been warned! */ namespace DTS\eBaySDK\Test\Trading\Enums; use DTS\eBaySDK\Trading\Enums\SellerPaymentMethodCodeType; class Sell...
<header class="header dark-bg"> <div class="toggle-nav"> <div class="icon-reorder tooltips" data-original-title="Toggle Navigation" data-placement="bottom"><i class="icon_menu"></i></div> </div> <!--logo start--> <a href="/" class="logo">ณัฐรัตน์ คาเฟ่</span></a> <!--logo end--> ...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateUnitbase extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('unitbase', function...
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateWatchersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('watchers', fun...
<html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="csrf-token" content="{{ csrf_token() }}"> <title>@yield('title')</title> {{-- @stack('scripts') --}} <link href="{{ asset('css/app.css') }}" rel="stylesheet" type="text/css"> ...
<?php /* * This file is part of UnivNantes. * * (c) Monofony * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace App\Behat\Context\Cli; use App\Command\Installer\SetupCommand; use Symfony\Bundle\FrameworkBundle\Console\App...
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class AddDepartmentIdToAnswersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('answe...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> <meta name="description" content="" /> <meta name="author" content="" /> <title>@yield('title','home')|Pokédex</title> <link href="{{ asset('...
<?php namespace Tests\Unit\Models; use App\Models\Repository; use App\Models\User; use Illuminate\Foundation\Testing\RefreshDatabase; use Tests\TestCase; class RepositoryTest extends TestCase { use RefreshDatabase; public function testBelongsToUser() { $repository = Repository::factory()->create...
<?php namespace App\View\Components\Site; use Illuminate\View\Component; class Footer extends Component { public $site; /** * Create a new component instance. * * @return void */ public function __construct($site) { $this->site = $site; } /** * Get the view ...
<?php $module_gui_str['editor_layout']['1001']="布局"; $module_gui_str['editor_layout']['1002']="样式"; $module_gui_str['editor_layout']['1003']="应用"; $module_gui_str['editor_layout']['1004']="巴利字符"; $module_gui_str['editor_layout']['1005']="第一:"; $module_gui_str['editor_layout']['1006']="第二:"; $module_gui_str['editor_layo...
<?php $__env->startSection('container'); ?> <style> @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap'); #gambar{ width: 300px; height: 300px; } .card-title{ color: white; font-family: 'Montserrat'; font-weight: 800; } #kartu{ w...
<?php /** * This file is part of PDepend. * * PHP Version 5 * * Copyright (c) 2008-2017 Manuel Pichler <mapi@pdepend.org>. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Red...
<aside> <?php // ===> gesttion de la class active du sidebar switch ($flag) { case 'bookmarked': $bookmarked = "active"; $default = ""; $advertisements = ""; $settings = ""; break; case 'advertisements': $bookmark...
<?php return [ /* |-------------------------------------------------------------------------- | Pagination Language Lines |-------------------------------------------------------------------------- | | The following language lines are used by the paginator library to build | the simple pagination links. You ar...
<?php declare(strict_types=1); namespace App\Web\API\Action; use Symfony\Component\HttpFoundation\Request as ServerRequest; abstract class Request { abstract public static function fromRequest(ServerRequest $request): self; }
<?php namespace App\Http\Controllers; use App\Models\Product; use Illuminate\Http\Request; class ProductController extends Controller { public function show(Product $product) { return view('products.show', compact('product')); } }
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Type extends Model { use HasFactory; protected $table="Types"; protected $primaryKey = "ID_Type"; protected $fillable = [ 'Type_Name', 'Price', 'De...
<?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 /* * This file is part of the symfony package. * (c) Fabien Potencier <fabien.potencier@symfony-project.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * sfPearRestPlugin interacts with a symfony plugin channel. ...
<?php namespace WebsiteBundle\Controller; use Symfony\Component\HttpFoundation\Request; use Symfony\Bundle\FrameworkBundle\Controller\Controller; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; use WebsiteBundle\Entity\Speaker; use WebsiteBundle...
<?php /** * Zend Framework * * LICENSE * * This source file is subject to the new BSD license that is bundled * with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://framework.zend.com/license/new-bsd * If you did not receive a copy of the license an...
<?php defined('BASEPATH') or exit('No direct script access allowed'); class User extends CI_Controller { public function __construct() { parent::__construct(); is_logged_in(); } public function index() { $data['title'] = 'My Profile'; $data['user'] = $this->db->get_...
<?php declare(strict_types=1); namespace ProxyManager\ProxyGenerator\LazyLoadingGhost\MethodGenerator; use ProxyManager\Generator\MethodGenerator; use Zend\Code\Generator\Exception\InvalidArgumentException; use Zend\Code\Generator\MethodGenerator as ZendMethodGenerator; use Zend\Code\Generator\PropertyGenerator; /*...
<?php require_once ("../lib/YopClient.php"); //Post请求 对称秘钥 function post_aes(){ YopConfig::$debug=true; $appKey = "yop-boss"; $secretKey = "PdZ74F6sxapgOWJ31QKmYw=="; $request = new YopRequest($appKey, $secretKey); //加入请求参数 $request->addParam("request_flow_id", "12345678");//请求流水标识 $reque...
@extends('admin.panel') @section('menu') @include('admin.sms.menuSms') @endsection @section('panel-contenido') <div class="px-4"> <div class="d-flex"> <i class="fa fa-trash pr-2 fa-lg pt-3 text-green"></i> <div> <p class="subheader-title mb-0">Lista Negra</p> ...
<?php namespace App\Http\Controllers; use App\Noonenew\Marker\Marker; use Illuminate\Http\Request; use App\Projectpage; use Illuminate\Support\Arr; use TCG\Voyager\Facades\Voyager; use Illuminate\Support\Str; class ProjectpagesController extends Controller { public function builder($id) { $projectpa...
<?php namespace App\Http\Controllers; use App\Models\Cancha; use Illuminate\Http\Request; use PDF; class CanchasController extends Controller { public function index(Request $request) { $canchas= Cancha::all()->where('cedula','=',$request->user()->cedula); $canchas=$canchas->sortByDesc('id'...
@extends('layouts.app') @section('stylesheets') <link rel="stylesheet" href="/css/select2.min.css"> @endsection @section('content') <div class="container"> <div class="row"> <div class="col-md-2"></div> <div class="col-md-8"> <div class="well"> <form class="form-horizontal" method="POST" action="{{...
<?php declare(strict_types=1); /* * +----------------------------------------------------------------------+ * | ThinkSNS Plus | * +----------------------------------------------------------------------+ * | Copyright (c) 2017 Chengdu ZhiYiChuangXiang Technol...
<?php namespace App\Http\Middleware; use Closure; class CheckUser { /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @return mixed */ public function handle($request, Closure $next) { if(auth()->user()->role...
<?php /** * @file controllers/grid/toc/TocGridHandler.inc.php * * Copyright (c) 2014-2021 Simon Fraser University * Copyright (c) 2000-2021 John Willinsky * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @class TocGridHandler * @ingroup controllers_grid_toc * * @brief Handle ...
<?php namespace Filament\Forms\Concerns; use Filament\Forms\Components\FileUpload; trait SupportsFileUploadFields { public function getUploadedFileUrl(string $statePath): ?string { foreach ($this->getComponents() as $component) { if ($component instanceof FileUpload && $component->getStat...
<?php class WCML_Vpc { function __construct() { add_filter( 'wcml_calculate_totals_exception', array( $this, 'wcml_vpc_cart_exc' ), 10, 2 ); } function wcml_vpc_cart_exc( $exc, $cart ) { foreach( $cart->cart_contents as $cart_item ){ if ( array_key_exists( 'visual-product-configuration', $cart_item ) ) { ...
@extends('frontend.master') @section('js-bootstrap-header') <link rel="shortcut icon" type="image/x-icon" href="frontend/img/favicon.ico"> <link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'> <link href='https://fonts.googleapis.com/css?family=Roboto:400,100,300,500,...
@extends('partial.main') {{-- menghubungkan dari yield ke template lain --}} @section('title') <h1>table</h1> @endsection @section('content') <table class="table table-bordered"> <thead> <tr> <th style="width: 10px">#</th> <th>Task</th> <th>Progress</th> <th style...
<?php /** * Seabreeze * Copyright (C) 2015 IceFlame.net * * Permission to use, copy, modify, and/or distribute this software for * any purpose with or without fee is hereby granted, provided that the * above copyright notice and this permission notice appear in all copies. * * @package FlameCore\Seabreeze * @...
<?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 namespace App\Http\Controllers\Backend\Access\Role; use App\Http\Controllers\Controller; use App\Http\Requests\Backend\Access\Role\CreateRoleRequest; use App\Http\Requests\Backend\Access\Role\DeleteRoleRequest; use App\Http\Requests\Backend\Access\Role\EditRoleRequest; use App\Http\Requests\Backend\Access\Role\...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateBudgetFormsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('budget_form...
<?php namespace App\Exports; use Illuminate\Contracts\View\View; use Illuminate\Support\Facades\DB; use Maatwebsite\Excel\Concerns\FromView; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\ShouldAutoSize; use Maatwebsite\Excel\Concerns\FromCollection; /** * Class ItemExport * * @package ...
<!DOCTYPE html> <html lang="en"> <?php session_start(); if($_SESSION['loggedIn'] == "0"){ header('Location: login.php?code=1'); } else if(!isset($_SESSION['loggedIn'])){ header('Location: login.php?code=1'); } session_start(); error_reporting(E_ALL); ini_set('dis...
<?php namespace App; use Illuminate\Database\Eloquent\Model; class GroupMemberPost extends Model { protected $table = "group_member_post"; protected $fillable = ['group_id', 'user_id', 'post', 'type_post_id']; protected $date = ['created_at', 'updated_at']; public function user() { retur...
<?php /** * 源码名:caozha-admin * Copyright © 2020 草札 (草札官网:http://caozha.com) * 基于木兰宽松许可证 2.0(Mulan PSL v2)免费开源,您可以自由复制、修改、分发或用于商业用途,但需保留作者版权等声明。详见开源协议:http://license.coscl.org.cn/MulanPSL2 * caozha-admin (Software Name) is licensed under Mulan PSL v2. Please refer to: http://license.coscl.org.cn/MulanPSL2 * Github:...
<?php Namespace App\Http\Controllers\Customer; use Auth; use App\Http\Controllers\Controller; class PortalController extends Controller { /** * Create a new controller instance. * * @return void */ public function __construct() { $this->middleware('customerAuth'); } ...
@extends('layouts.product-layout') @section('content') <h1>Products</h1> @foreach($products as $product) <article> <h2><a href="/products/{{$product->id}}">{{ $product['product_name']}}</a></h2> </article> @endforeach @endsection
<?php namespace App\Models; use App\Models\User; use Illuminate\Database\Eloquent\Model; use Illuminate\Support\Facades\Storage; use Cviebrock\EloquentTaggable\Taggable; class Design extends Model { use Taggable; protected $fillable = [ 'user_id', 'image', 'title', 'descr...
<?php require APPROOT . '/views/includes/header.php'; ?> <div class="wrapper"> <div class="form-group"> <div class="update-form"> <form action="" method="POST"> <h1>Create Profile</h1> <input type="text" class="update-form<?php echo (!empty($data['first_name_error...
<?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...
@extends('layouts.dashboard') @section('title') Create new movie - @endsection @section('pageTitle') Create new movie @endsection @section('content') <div class="container"> <div class="row"> <div class="col"> <form action="{{ route('movieStore') }}" method="POST" enctype="multi...
<meta name="csrf-token" content="{{ csrf_token() }}"> <!-- CSS --> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> <link href="https://fonts.googleapis.co...
<?php /** * PHPExcel * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed ...
<?php namespace App\Providers; use Illuminate\Cache\RateLimiting\Limit; use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider; use Illuminate\Http\Request; use Illuminate\Support\Facades\RateLimiter; use Illuminate\Support\Facades\Route; class RouteServiceProvider extends ServiceProvide...
<?php namespace Kodiak\Exception\Http; class HttpServiceTemporarilyUnavailableException extends \Exception { }
<?php declare(strict_types=1); namespace Igloonet\MailkitApi\Exceptions\Message; use Igloonet\MailkitApi\Exceptions\RpcResponseErrorException; abstract class MessageSendException extends RpcResponseErrorException implements MessageException { }
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateTbMCostSalesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('tb_m_cost_...
@extends('layouts.app') @section('content') <div class="container"> <div class="row justify-content-center"> <div class="col-md-8"> <div class="card"> <div class="card-header">{{ __('Register') }}</div> <div class="card-body"> <form method="P...
<div class="container"> <!-- Outer Row --> <div class="row justify-content-center"> <div class="col-lg-7"> <div class="card o-hidden border-0 shadow-lg my-5"> <div class="card-body p-0"> <!-- Nested Row within Card Body --> <div clas...
<?php declare(strict_types=1); /** * This file is part of the Carbon package. * * (c) Brian Nesbitt <brian@nesbot.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Tests\Localization; class LktTest extends Localizati...
<?php use Illuminate\Database\Seeder; class UsersTableSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { /*DB::table('users')->insert( [ 'name' => 'Administrador', 'email' => 'admin@admin...
<?php return array( //'配置项'=>'配置值' /* 数据库设置 */ 'DB_TYPE' => 'mysql', // 数据库类型 'DB_HOST' => 'localhost', // 服务器地址 'DB_NAME' => 'yd', // 数据库名 'DB_USER' => 'root', // 用户名 'DB_PWD' => 'root', ...
<?php /* Cachekey: cache/stash_default/doctrine/[concrete\core\entity\site\locale@[annot]][1]/ */ /* Type: array */ /* Expiration: 2018-03-18T22:15:11+01:00 */ $loaded = true; $expiration = 1521407711; $data = array(); /* Child Type: array */ $data['return'] = unserialize(base64_decode('YToyOntpOjA7TzoyNzoiRG9jdH...
<?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...
@extends('templates.admin.layout') @section('content') <div class=""> <div class="row"> <div class="col-md-12 col-sm-12 col-xs-12"> <div class="x_panel"> <div class="x_title"> <table id="datatable-buttons" class="table table-hover table-responsive"> <thead> ...
<?php // Begin the session session_start(); // If the session is not present, set the variable to an error message if ( !isset($_SESSION['captcha_id']) ) $str = 'ERROR!'; // Else if it is present, set the variable to the session contents else $str = $_SESSION['captcha_id']; // Set the content type header('Co...
<?php namespace app\index\controller; use app\common\controller\Frontend; class Home extends Frontend { protected $layout = ''; public function _initialize() { parent::_initialize(); } public function release() { return $this->view->fetch(); } }
<header class="page-header"> <div class="container-fluid"> <h2 class="no-margin-bottom">Riwayat Transaksi</h2> </div> </header> <br> <div class="container-fluid"> <br><br> <div class="row"> <div class="col-md-12"> <table class="table" id="example" ui-options=ui-options="{ &quot;paging&quot;: { ...
<?php //------------------------------------------------------------------------------ // Custom configurations //------------------------------------------------------------------------------ $config['email_server_from'] = "support@localhost"; $config['site_name'] = "AgoraBid"; $config['site_domain'] = "agorabid.loca...
<!-- ABOUT US START --> <section class="flat-row padding-bot0"> <div class="flat-our-services v3"> <div class="container"> <div class="row"> <div class="col-md-8"> <div class="our-services"> ...
<?php namespace App\View\Composers; use Samrap\Acf\Acf; use Roots\Acorn\View\Composer; class Timeline extends Composer { /** * List of views served by this composer. * * @var array */ protected static $views = [ 'template-section-timeline', ]; /** * Data to be passed ...
@extends('frontend.layouts.app') <!--start section --> @section('title') <title>Lira </title> @endsection @section('content') @include('frontend.partials.slider') <div class="container content-wrapper"> <div class="row"> <div id="primary" class="fp-content-area"> <main id="main" class="...
<?php return [ 'locale' => 'en', 'name' => 'English', 'preset' => [ 0 => [ 'group' => 'auth', 'key' => 'failed', 'value' => 'These credentials do not match our records.', ], 1 => [ 'group' => 'auth', 'key' => 'throttle', ...
<?php namespace App; use Illuminate\Database\Eloquent\Model; class CatalogRef extends Model { protected $fillable = ['designation', 'date_recep', 'depositaire', 'unite_recue', 'quantite', 'fabricant', 'lot', 'date_fab', 'date_exp', 'catalog', 'cas', 'prix', 'user_id']; }
<?php namespace App\Mail; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; class MailNotify extends Mailable { use Queueable, SerializesModels; // public $customer; /** * Create a new message instance. ...
<?php namespace Sabre\HTTP\Auth; /** * HTTP Basic authentication utility. * * This class helps you setup basic auth. The process is fairly simple: * * 1. Instantiate the class. * 2. Call getCredentials (this will return null or a user/pass pair) * 3. If you didn't get valid credentials, call 'requireLogin' * ...
<?php class Main { public $i = 0; static $instance; private function __construct() { $this->i = rand(1, 10); printf("Main init: %s\n", $this->i); } public static function init() { if(self::$instance == null) self::$instance = new self(); printf("Main: %s && App: %s &&...
<?php echo form_open(get_uri("projects/save_timelog_note/"), array("id" => "timesheet-note-form", "class" => "general-form", "role" => "form")); ?> <div class="modal-body clearfix"> <div class="container-fluid"> <input type="hidden" name="id" value="<?php echo $model_info->id; ?>" /> <div class="for...
<?php namespace Tests\DDoSX; use DateTime; use Faker\Factory as Faker; use GuzzleHttp\Client as GuzzleClient; use GuzzleHttp\Handler\MockHandler; use GuzzleHttp\HandlerStack; use GuzzleHttp\Psr7\Response; use PHPUnit\Framework\TestCase; use UKFast\SDK\DDoSX\Client as DdosxClient; use UKFast\SDK\DDoSX\Entities\Ssl; us...
<div x-data="{ open: false }"> <div class="relative z-10 pb-8 bg-white sm:py-5 md:pb-10 lg:w-full"> <div class="pt-6 px-4 sm:px-6 lg:px-8"> <nav class="relative flex items-center justify-between sm:h-10 lg:justify-start"> <div class="flex items-center flex-grow flex-shrink-0 lg:f...
<?php /** * TablePress Base View with members and methods for all views * * @package TablePress * @subpackage Views * @author Tobias Bäthge * @since 1.0.0 */ // Prohibit direct script loading. defined( 'ABSPATH' ) || die( 'No direct script access allowed!' ); /** * TablePress Base View class * @package Table...
<?php class erLhcoreClassGenericBotActionRestapi { public static function process($chat, $action, $trigger, $params) { $params['current_trigger'] = $trigger; if (!isset($params['first_trigger'])) { $params['first_trigger'] = $params['current_trigger']; } ...
<?php /** * FakeApi * * PHP version 5 * * @category Class * @package OpenAPIServer\Api * @author OpenAPI Generator team * @link https://github.com/openapitools/openapi-generator */ /** * OpenAPI Petstore *_/ ' \" =end -- \\r\\n \\n \\r * * This spec is mainly for testing Petstore server and contains...
<?php use yii\helpers\Html; use yii\widgets\ActiveForm; /* @var $this yii\web\View */ /* @var $model common\models\DetailFasilitas */ /* @var $form yii\widgets\ActiveForm */ ?> <div class="detail-fasilitas-form"> <?php $form = ActiveForm::begin(); ?> <?= $form->field($model, 'no_mobil')->textInput() ?> ...
<!DOCTYPE html> @extends('admin.layouts.default') @section('title') <title>EPOS HRM | {{trans('index.title')}}</title> @stop @section('extra_css') <!-- BEGIN PAGE LEVEL PLUGINS --> <link href="{{url('public/global/plugins/datatables/datatables.min.css')}}" rel="stylesheet" type="text/css" /> ...
<?php /* * This file is part of the TYPO3 CMS project. * * It is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License, either version 2 * of the License, or any later version. * * For the full copyright and license information, please read the * LICENSE.tx...
<?php /** * @package jDownloads * @version 2.5 * @copyright (C) 2007 - 2013 - Arno Betz - www.jdownloads.com * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.txt * * jDownloads is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty ...
@extends('admin.layouts.admin') @section('css') <link href="{{ asset('admin/pyrus/datatables/dataTables.bootstrap4.css')}}" rel="stylesheet" type="text/css"> <link href="{{ asset('admin/pyrus/datatables/responsive.bootstrap4.css')}}" rel="stylesheet" type="text/css"> <link href="{{ asset('admin/assets/vend...
<?php session_start(); ?> <!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title>Làm bài thi trắc nghiệm</title> <script src="https://code.jquery.com/jquery-3.5.1.js" integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script> <!-- Latest compiled...
<?php /** * WooCommerce Onboarding Products * NOTE: DO NOT edit this file in WooCommerce core, this is generated from woocommerce-admin. */ namespace Automattic\WooCommerce\Internal\Admin\Onboarding; use Automattic\WooCommerce\Admin\Features\Features; use Automattic\WooCommerce\Internal\Admin\Onboarding\Onboarding...
<?php namespace App\Console; use Illuminate\Console\Scheduling\Schedule; use Illuminate\Foundation\Console\Kernel as ConsoleKernel; class Kernel extends ConsoleKernel { /** * The Artisan commands provided by your application. * * @var array */ protected $commands = [ // ]; ...
<?php /** * Tutor Course attachments Main Class */ namespace TUTOR_CP; use TUTOR\Tutor_Base; class CoursePreview extends Tutor_Base { public function __construct() { parent::__construct(); add_action( 'add_meta_boxes', array($this, 'register_meta_box') ); add_action('tutor_lesson_edit_modal_form_after', a...
<?php /** * Zend Framework (http://framework.zend.com/) * * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License * @package Z...
@extends('admin.layouts.app') @section('content') <div class="row"> <div class="col-12"> <div class="box box-solid box-primary"> <div class="box-header with-border"> <h4 class="box-title">Data Table With Full Features</h4> </div> ...
<?php namespace ConductorMySqlSupport\Adapter; use ConductorMySqlSupport\Exception; class DatabaseConfig { /** * @var string */ public $user; /** * @var string */ public $password; /** * @var string */ public $host; /** * @var string */ public $...
<?php $texto = file_get_contents('texto.txt'); echo $texto; $texto = explode("\n", $texto); echo "<br><br>linhas: ". count($texto); //print_r($texto);
<?php echo form_open('user_company/add',array("class"=>"form-horizontal")); ?> <div class="form-group"> <label for="UserId" class="col-md-4 control-label">UserId</label> <div class="col-md-8"> <input type="text" name="UserId" value="<?php echo $this->input->post('UserId'); ?>" class="form-control" id="UserId" ...
<?php if(!defined('ABSPATH')) return; class WPSPS_CP { protected static $instance = null; public function __construct(){ add_action('wp_enqueue_scripts',array($this,'enqueue_scripts')); add_shortcode('slider_wpsps', array($this,'slider_shortcode')); if ( in_array( 'elementor/elementor.php', apply_filters(...
<?php namespace App\Providers; use Illuminate\Cache\RateLimiting\Limit; use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider; use Illuminate\Http\Request; use Illuminate\Support\Facades\RateLimiter; use Illuminate\Support\Facades\Route; class RouteServiceProvider extends ServiceProvide...