text
stringlengths
2
1.03M
<?hh // strict /* * Copyright (c) 2015-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ namespace Facebook\HackCodegen; interface IHackBuilderValueRenderer<-T> { public functio...
<?php use yii\widgets\ActiveForm; ?> <div class="modal fade" id="update-movie-modal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" da...
<?php namespace App\Notifications; use Illuminate\Bus\Queueable; use Illuminate\Notifications\Notification; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Notifications\Messages\MailMessage; class SendToken extends Notification { use Queueable; private $isForNewMail; /** * Create a new...
<table class="w3-table w3-striped w3-border">
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Models\Category; use App\Models\Product; class HomeController extends Controller { public function index(){ $categories = Category::all(); return view('home.index',[ 'categories' => $categories, ]); ...
@extends('layouts/template') @section('content') <h1>Ubah Data Komik</h1> <div class="row"> <div class="col-6"> <form action="/komik/prosesUbah/{{ $komik->slug }}" method="post" enctype="multipart/form-data"> {{ csrf_field() }} <div class="form-control p-3"> <h5 class...
<?php use yii\helpers\Html; /* @var $this yii\web\View */ /* @var $model frontend\modules\sta\models\Talleres */ $this->title = Yii::t('sta.labels', 'Create Talleres'); $this->params['breadcrumbs'][] = ['label' => Yii::t('sta.labels', 'Talleres'), 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; ?...
@extends('layouts.mainLayout') @section('contenido') <div class="mainTitle"> <h1>Ajax Testing</h1> </div> <div class="container"> <div class="row"> <div class="col-sm"> One of three columns </div> <div class="col-sm testingDiv"> <h3>Get Request</h3> <button id="buttonRequest" type="bu...
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use Illuminate\Support\Facades\Input; use App\Post; use App\Comentario; use Cache; use Illuminate\Support\Facades\View; use phpDocumentor\Reflection\File; use Redirect; class PostController extends Controller { public function index() { ...
<?php use yii\helpers\Html; use yii\widgets\ActiveForm; /* @var $this yii\web\View */ /* @var $model backend\models\Announcement */ /* @var $form yii\widgets\ActiveForm */ ?> <div class="announcement-form"> <?php $form = ActiveForm::begin(); ?> <?= $form->field($model, 'judul_pengumuman')->textInput(['maxl...
<?php namespace DefStudio\Telegraph\Jobs; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Support\Facades\Http; class SendRequestToTelegramJob implements ShouldQueue { use Dispatchable; ...
@php $args = array( 'post_type' => 'Banners', 'posiciones' => 'Slider Home', 'posts_per_page' => 5 ); $home_query = new WP_Query( $args ); @endphp @if($home_query->have_posts()) <div id="home__slider" class="swiper-container loading"> <div class="swiper-wrapper"> @while ($home_qu...
<?php return [ 'customer1' => [ 'id' => 1, 'first_name' => 'Customer', 'last_name' => '1', ], 'customer2' => [ 'id' => 2, 'first_name' => 'Customer', 'last_name' => '2', ], ];
@extends('dashboard.dashboard') @section('content') <!-- include summernote css/js , not in the includes layout because it's very specific --> <link href="https://cdnjs.cloudflare.com/ajax/libs/summernote/0.8.9/summernote-bs4.css" rel="stylesheet"> <script src="https://cdnjs.cloudflare.com/ajax/libs/summe...
<?php $factory->define(App\Exam::class, function (Faker\Generator $faker) { return [ "course_id" => factory('App\Course')->create(), "lesson_id" => factory('App\Lesson')->create(), "title" => $faker->name, "start_time" => $faker->date("d-m-Y H:i:s", $max = 'now'), "duration"...
@extends('layouts.backend') @section('content') <div id="layoutSidenav_content"> <main> <div class="container-fluid"> <h1 class="mt-4">Edit Profil <b>{{$user->nama}}</b></h1> <ol class="breadcrumb mb-4"> ...
@extends('backend.master') @section('page_style') @endsection @section('content') <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <div class="content-header"> <div class="container-fluid"> <div cla...
<?php class Package_list extends CI_controller{ public function __construct(){ parent::__construct(); //libraries $this->load->library('session_checker'); // model $this->load->model('package_list_model'); $this->load->model('dishes_model'); $this->load->model('services_model'); } public function...
<?php require('../app/classLoad.php'); session_start(); if (isset($_SESSION['userstock'])) { $codeSale = htmlentities($_GET['codeSale']); // Create Controller $saleDetailActionController = new SaleDetailActionController('SaleDetail'); // Legacy Calls $productManager = new ProduitManager(PDOFactor...
<?php /** * Created by PhpStorm. * User: Mvaliolahi * Date: 12/30/18 * Time: 12:59 PM */ namespace Mvaliolahi\SibDoc\Contracts; use Mvaliolahi\SibDoc\SibDoc; use Mvaliolahi\SibDoc\Traits\ConfigTrait; /** * Class DocumentGenerator * @package Mvaliolahi\SibDoc\Contracts */ abstract class DocumentGenerator { ...
<?php defined( 'ABSPATH' ) or exit(); /** * Case fields */ $fields = [ 'case_filed' => [ [ 'id' => uno_input_id( 'case_criminal' ), 'name' => uno_input_name(), 'label' => 'Criminal Case', 'type' => 'text', 'value' => uno_input_value(), 'class' => uno_input_class( 'text...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreatePaymentTypesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('payment_ty...
<?php namespace Tests\Commands; use App\Services\Member\Models\User; use App\Services\Order\Models\Order; use Illuminate\Support\Str; use Tests\OriginalTestCase; class OrderHandlerCommandTest extends OriginalTestCase { /** * @expectedException \Illuminate\Database\Eloquent\ModelNotFoundException */ ...
<?php /* +------------------------------------------------------------------------+ | Phalcon Developer Tools | +------------------------------------------------------------------------+ | Copyright (c) 2011-present Phalcon Team (https://www.phalconphp.com) | ...
<?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class ValidaDocente extends FormRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } /** * Get the...
<?php namespace App\Http\Controllers\Reparacion; use App\Reparaciones; use Illuminate\Http\Request; use App\Http\Controllers\Controller; use Illuminate\Support\Facades\Log; class ReparacionController extends Controller { public function find(Request $request){ try { $messages = [ ...
<?php namespace App\Http\Middleware; use Closure; use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; class IsPostier { /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @return mixed */ public function han...
<?php class Lowongan extends CI_Controller { public function index() { $this->load->view('header1'); $this->load->view('lowongan/lowongan'); } public function hapuslowongan($id) { if ($_SESSION['status']=='Mitra') { $this->db->where('id', $id); ...
<?php declare(strict_types=1); namespace Rector\Php80\Rector\Class_; use PhpParser\Node; use PhpParser\Node\Expr; use PhpParser\Node\Expr\Assign; use PhpParser\Node\Param; use PhpParser\Node\Stmt\Class_; use PhpParser\Node\Stmt\ClassMethod; use PhpParser\Node\Stmt\Expression; use PhpParser\Node\Stmt\Property; use Re...
<?php use UniEngine\Engine\Modules\Flights; function MissionCaseExpedition($fleetRow, &$_FleetCache) { global $UserDev_Log, $_Lang, $UserStatsData; /** * @param array $params * @param array $params['messageData'] * @param EnumValue $params['fleetTimeMoment'] */ $sendExpeditionMessage ...
window.hbCMBidxc.rtbsheaderBid4S0({"pinfo":{"9":{"adCodeType":"BANNER","adFormat":"html"}},"meta":{"auction_id":"8372346369180502_60281413","region":"nydc","vcfl":false,"serverId":"c10-mowx-web-49","apid":1,"prvReqId":"345346465076006051572263137104","mowxLogs":{"PC":0,"SPRIG":null,"UCC":null,"GCID":null,"IAB2":null},"...
<?php namespace App\Admin\Controllers; use App\Http\Controllers\Controller; use Encore\Admin\Controllers\Dashboard; use Encore\Admin\Layout\Column; use Encore\Admin\Layout\Content; use Encore\Admin\Layout\Row; class HomeController extends Controller { public function index(Content $content) { return ...
<?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 App\Http\Requests; use App\Rules\UniqueClientNameRule; use Illuminate\Foundation\Http\FormRequest; class ClientRequest extends FormRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize(): bool { ...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateGenreMovieTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('genre_movie'...
<?php namespace Craft; /** * Class CraftTwigExtension * * @author Pixel & Tonic, Inc. <support@pixelandtonic.com> * @copyright Copyright (c) 2014, Pixel & Tonic, Inc. * @license http://craftcms.com/license Craft License Agreement * @see http://craftcms.com * @package craft.app.etc.templating.twigex...
<?php // This file is auto-generated, don't edit it. Thanks. namespace AlibabaCloud\SDK\GEMP\V20210413\Models; use AlibabaCloud\Tea\Model; class ListRouteRulesRequest extends Model { /** * @description 规则名称 * * @var int[] */ public $ruleName; /** * @description 服务名称 * ...
<?php namespace PhpParser\Builder; use PhpParser\Node; use PhpParser\Node\Expr; use PhpParser\Node\Scalar; class ParamTest extends \PHPUnit_Framework_TestCase { public function createParamBuilder($name) { return new Param($name); } /** * @dataProvider provideTestDefaultValues */ pu...
<!DOCTYPE html> <html lang="{{ app()->getLocale() }}"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="csrf-token" content="{{ csrf_token() }}"> <!-- Meta, title, CSS, favicons, etc. --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge...
<?php namespace App\Providers; use Aldemeery\Shieldify\Key; use Illuminate\Http\Request; use Illuminate\Support\Carbon; use Aldemeery\Shieldify\Features; use Aldemeery\Shieldify\Shieldify; use Illuminate\Support\Facades\URL; use Illuminate\Support\Facades\Config; use Illuminate\Support\ServiceProvider; use App\Action...
<?php use yii\helpers\Html; use yii\widgets\DetailView; use app\models\general\GeneralLabel; use app\models\general\GeneralMessage; /* @var $this yii\web\View */ /* @var $model app\models\RefSixstepStage */ $this->title = $model->id; $this->params['breadcrumbs'][] = ['label' => GeneralLabel::sixstep_stage, 'url' => ...
<?php /* * This file is part of the Assetic package, an OpenSky project. * * (c) 2010-2011 OpenSky Project Inc * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Assetic\Filter; use Assetic\Asset\AssetInterface; /** * F...
<?php namespace App\Http\Controllers\API; use Exception; use App\Models\User; use Carbon\Carbon; use Illuminate\Support\Str; use Illuminate\Http\Request; use App\Http\Requests\LoginRequest; use App\Http\Controllers\Controller; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Facades\Hash; use App\Http\Requ...
<?php namespace SimpleSquid\Vend\Actions; use SimpleSquid\Vend\Resources\TwoDotZero\User; use SimpleSquid\Vend\Resources\TwoDotZero\UserCollection; class UsersManager { use ManagesResources; /** * Get a single user. * Returns a single user with the requested ID. * * @param string $id ...
<?php use yii\helpers\Html; ?> <div class="col-lg-12"> <h2>Окончание договора</h2> <table class="table table-bordered"> <tr> <th>Договор</th> <th>Помещение</th> <th>Арендатор</th> <th>Площадь</th> </tr> <?php foreach($models as $model):?...
<?php namespace Auth\Form; use Zend\Form\Element; use Zend\Form\Form; use Zend\Form\Element\Csrf; class LoginForm extends Form { public function __construct($name) { parent::__construct($name); $this->setAttribute('method', 'post'); $this->add(array( 'name' => 'em...
<!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Bootstrap CSS --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1...
<td>{{ $dato_fiscal->nom_o_raz_soc }}</td>
@extends('admin.layouts.main') @section('content') <div class="container-fluid" id="container-wrapper"> <div class="d-sm-flex align-items-center justify-content-between mb-4"> <h1 class="h3 mb-0 text-gray-800">Order Tables</h1> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href...
<div class="card bg-brown"> <p class="p-t-10 p-l-10">KET KETEGORI :</p> <p class="p-l-10 p-b-10"><span class="badge bg-green">a</span> Standar <span class="badge bg-green">b</span> Family 1 <span class="badge bg-green">c</span> Family 2 <span class="badge bg-green">d</span> Lainnya</p> </div> <div class="row cl...
<?php namespace Google\AdsApi\AdManager\v201902; /** * This file was generated from WSDL. DO NOT EDIT. */ class InventoryUnitError extends \Google\AdsApi\AdManager\v201902\ApiError { /** * @var string $reason */ protected $reason = null; /** * @param string $fieldPath * @param \Go...
<?php namespace FatcaIdesPhp; use Monolog\Logger; use Monolog\Handler\StreamHandler; class Transmitter { var $fdi; // php data with fatca information var $dataXml; var $dataXmlSigned; var $dataCompressed; var $dataEncrypted; var $diDigest; var $tf3; var $tf4; var $file_name; /* * fdi: object of type i...
<?php namespace App\Model\Product\SerialNumber; class Generator { /** * @param string $originalSN * @param \App\Model\Product\SerialNumber\Generator\Options $options * @return string */ public function generateFirst($originalSN, Generator\Options $options) { $offset = $options...
<!DOCTYPE html> <html> <head> <title></title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <link rel="stylesheet" href="<?php echo base_url('assets/css...
<?php session_start(); require_once "../../class/conexion.php"; require_once "../../class/cuadres.php"; $obj = new Cuadre(); $c= new Conectar(); $conexion= $c->conexion(); $sql="SELECT cod_pro, ces_pro, cpo_pro, cpa_pro, cal_pro, cmo_pro FROM prod...
<?php /** * The Yoast SEO Import Class * * @since 0.9.0 * @package RankMath * @subpackage RankMath\Admin\Importers * @author Rank Math <support@rankmath.com> */ namespace RankMath\Admin\Importers; use RankMath\Helper; use MyThemeShop\Helpers\DB; use MyThemeShop\Helpers\WordPress; use RankMath\Redir...
<?php return unserialize('a:2:{i:0;O:30:"Doctrine\\ORM\\Mapping\\ManyToOne":4:{s:12:"targetEntity";s:33:"Xm\\CovoiturageBundle\\Entity\\Ville";s:7:"cascade";N;s:5:"fetch";s:4:"LAZY";s:10:"inversedBy";N;}i:1;O:32:"Doctrine\\ORM\\Mapping\\JoinColumns":1:{s:5:"value";a:1:{i:0;O:31:"Doctrine\\ORM\\Mapping\\JoinColumn":7:{s...
<?php namespace Oro\Bundle\WorkflowBundle; use Oro\Bundle\MessageQueueBundle\DependencyInjection\Compiler\AddTopicMetaPass; use Oro\Bundle\WorkflowBundle\Async\Topics; use Oro\Bundle\WorkflowBundle\DependencyInjection\Compiler; use Oro\Component\ChainProcessor\DependencyInjection\CleanUpProcessorsCompilerPass; use Or...
<!DOCTYPE html> <html lang="es"> <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"> <title>Visualizar datos</title> </head> <body> <?php $conexion=mysqli_connect("localhost","root","", "t...
<?php namespace app\home\controller; use think\Lang; class Sellerpromotionmgdiscount extends BaseSeller { public function _initialize() { parent::_initialize(); Lang::load(APP_PATH . 'home/lang/'.config('default_lang').'/sellerpromotionmgdiscount.lang.php'); if (intval(config('mgdisc...
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $CI = & get_instance(); ?> <form class="form_valid" id="save_form" action="<?php echo site_url($CI->controller_url.'/index/list');?>" method="post"> <div class="row widget"> <div class="widget-header"> <div class="title"> <?php echo...
<!DOCTYPE html> <html lang="en"> <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"> <title>Document</title> </head> <body> <h1>Hello, {{$name}}</h1> </body> </html>
<?hh // strict /** * This file is generated. Do not modify it manually! * * @generated SignedSource<<53a765894511fc0f26c2792f28749f0b>> */ namespace Facebook\HHAST; use namespace Facebook\TypeAssert; <<__ConsistentConstruct>> final class AlternateElseClause extends EditableNode implements IControlFlowStatement...
@extends('layouts.admin') @section('content') <div class="content"> <div class="row"> <div class="col-lg-12"> <div class="panel panel-default"> <div class="panel-heading"> {{ trans('global.show') }} {{ trans('cruds.testAnswer.title') }} </div>...
@extends('layouts.admin') <link rel="stylesheet" href="{{asset('css/botones.css')}}"> <link rel="stylesheet" href="{{asset('css/nGallo.css')}}"> {{-- <script src="{{asset('js/arch.js')}}"></script> --}} @section('content') {{-- llenar --}} <div id='contentS' align='center' class="row"> <iframe src="{{ URL::to('/g...
<?php /** * This is the Dispatcher used for cross-module communications and heavily * based on http://dustint.com/post/38/building-a-php-publish-subscribe-system * from Dustin Thomson. Used here with permission received on 21 Aug 2011. * * @package web2project\system * @author Dustin Thomson <dustin@dust...
<?php require_once "services/dbConfig.php"; require_once 'services/Course.php'; session_start(); mysqli_report(MYSQLI_REPORT_STRICT); if (!isset($_SESSION['role']) || $_SESSION['role'] != 'USER') { header('Location: index.php'); exit(); } try { $connection = new mysqli($host, $db_user, $db_password, $db_nam...
<?php namespace App\Http\Controllers\Admin; use Illuminate\Http\Request; use App\Http\Requests; use App\Http\Controllers\Controller; use App\Http\Requests\Admin\ProductSubCategoryRequest; use Illuminate\Support\Facades\Input; use App\Models\Admin\ProductSubCategory; use App\Models\Admin\ProductCategory; use DB; use A...
<?php /* * Copyright (C) the Ethna contributors. All rights reserved. * * This file is part of the Ethna package, distributed under new BSD. * For full terms see the included LICENSE file. */ use Prophecy\PhpUnit\ProphecyTestCase; use Prophecy\Argument; /** * このテストケースはEthna_Actionを最低限つくるにはどうすればできるか、 * ということをチェ...
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * DeviceActionResult File * PHP version 7 * * @category Library * @package Microsoft.Graph * @copyright © Microsoft Corporation. All rights reserved. * ...
<meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="description" content=""> <meta name="author" content=""> <title><?php echo SITE_NAME .": ". ucfirst($this->uri->segment(1))...
<?php use Cake\Core\Configure; ?> <!-- saved from url=(0151)https://trello-attachments.s3.amazonaws.com/5b7ea7338271240594a1558b/5cf7d940796b09401993d3f1/ca8a9bff6a68d923f7b5f698c3e79c9a/3_-_email-analise-3.html --> <html xmlns="http://www.w3.org/1999/xhtml" style="width:100% !important;"><head><meta http-equiv="Conten...
<?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 $HOST = "classroom.cs.unc.edu"; $USER = "jamhenry"; $PASSWORD = "EBRygwf7IMLu4vij"; $DATABASE = "jamhenrydb"; $mysqli = new mysqli($HOST, $USER, $PASSWORD, $DATABASE);
<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Ujian extends CI_Controller { public function __construct() { parent::__construct(); $this->load->model('UjianModel', 'ujian'); $this->load->model('SoalModel', 'soal'); $this->load->model('ModulModel', '...
<?php /* Cachekey: cache/stash_default/doctrine/[concrete\core\entity\statistics\usagetracker\fileusagerecord$file_id@[annot]][1]/ */ /* Type: array */ /* Expiration: 2017-04-01T20:40:47+02:00 */ $loaded = true; $expiration = 1491072047; $data = array(); /* Child Type: array */ $data['return'] = unserialize(base6...
<?php /* * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. 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 copy of the License at * * http://www.apache.org/licenses/LICENS...
<?php use Illuminate\Support\Facades\Route; Route::get('/', 'PagesController@inicio')->name('inicio'); Auth::routes(); Route::get('/home', 'HomeController@index')->name('home');
<?php namespace Tiempo\AdminBundle\Entity; use Doctrine\ORM\Mapping as ORM; /** * Estados * * @ORM\Table(name="estados") * @ORM\Entity(repositoryClass="Tiempo\AdminBundle\Repository\EstadosRepository") */ class Estados { /** * @var int * * @ORM\Column(name="id", type="integer") * @ORM\Id...
<?php namespace App\Http\Controllers\Mini; use App\Http\Controllers\ApiController; use Illuminate\Http\Request; use Illuminate\Support\Facades\Cache; use Illuminate\Support\Facades\Log; use App\Model\WechatMiniUser; use App\Libraries\Common; class WechatMiniLoginController extends ApiController { public function ...
@extends('admin.layouts.main') @section('content') <div class="content d-flex flex-column flex-column-fluid" id="kt_content" style="padding-top:10px"> <!--begin::Subheader--> <div class="subheader py-2 py-lg-6 subheader-transparent" id="kt_subheader"> <div class="container d-flex align-items-center ...
<?php namespace App\Http\Controllers\Api; use App\Redention; use App\User; use App\UsuarioPregon; use http\Env\Response; use Illuminate\Http\Request; use Illuminate\Support\Facades\Validator; class RedentionController extends Controller { public function store(Request $request) { $data = $request->al...
<?php require_once('assets/init.php'); $api_version = '1.3.1'; if (empty($_GET['type']) || !isset($_GET['type'])) { $json_error_data = array( 'api_status' => 'failed', 'api_version' => $api_version, 'errors' => array( 'error_id' => '3', 'error_text' => 'Bad request.'...
<?php define("GF_HEADER", "aaaaa"); require_once("common.php"); $dolls = getJson('doll'); $fairies = getJson('fairy'); $equips = getJson('equip'); $eqs = []; foreach($fairies as $fairy) { if(!$fairy->buildTime) continue; $tmp[0] = $fairy->buildTime; $tmp[1] = L::fairyd; $tmp[2] = ""; $tmp[3] = ge...
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <!-- Meta, title, CSS, favicons, etc. --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> ...
<?php return [ 'title' => 'Eklentiler', 'name' => 'Eklenti Modulü', 'description' => 'Ek bilgi ve yönetim.', 'section' => [ 'plugins' => 'Eklentiler', 'themes' => 'Temalar', 'modules' => 'Moduller', 'extensions' => 'Eklentiler', 'fi...
<?php /* * This file is part of the Dektrium project. * * (c) Dektrium project <http://github.com/dektrium> * * For the full copyright and license information, please view the LICENSE.md * file that was distributed with this source code. */ /** * @var jarrus90\User\models\User */ ?> <?= Yii::t('user', 'Hello'...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <title>北京智通智慧科技有限公司信息管理系统 -添加新产品</title> <meta name="keywords" content="Bootstrap模版,Bootstrap模版下载,Bootstrap教程,Bootstrap中文"/> <meta name="description" content="站长素材提供Bootstrap模版,Bootstrap教程,Bootstrap中文翻译等相关Bootstrap插件下载"/> <meta name="vi...
<?php namespace Microweber\Controllers; use Microweber\View; use Microweber\Install; use Illuminate\Routing\Controller; use Illuminate\Support\Facades\Config; use Illuminate\Support\Facades\Input; use Illuminate\Support\Facades\App; use Illuminate\Support\Facades\DB; use Illuminate\Support\Facades\Artisan; use Cache;...
<?php namespace App\Http\Controllers\Auth; use App\Http\Controllers\Controller; use App\Providers\RouteServiceProvider; use App\User; use Illuminate\Contracts\Validation\Validator as Validator2; use Illuminate\Foundation\Auth\RegistersUsers; use Illuminate\Http\Request; use Illuminate\Support\Facades\Hash; use Illumi...
<?php namespace App\Http\Controllers\Admin; use Illuminate\Http\Request; use App\Http\Controllers\Controller; use Spatie\Permission\Models\Permission; use Spatie\Permission\Models\Role; use Validator; use Illuminate\Support\Facades\Input; use Illuminate\Support\Facades\Redirect; use Illuminate\Support\Facades\Session...
<?php if (!isset($POST['id_depto']) && !isset($POST['nombre_depto'])) { $idDepto= $_POST["id_depto"]; $nombreDepto = $_POST['nombre_depto']; include_once "../control/controlGeneral.php"; $result= insertUpdateDepartamento($idDepto,$nombreDepto); if($result){ if($idDepto>0) $mjeTex...
<?php /** * @category WebPT * @copyright Copyright (c) 2012 WebPT, INC * @author jwilson * 11/20/12 9:29 AM */ namespace JsPackager\Helpers; use ReflectionClass; class Reflection { /** * Get a property that may be private or protected. * @static * @param mixed $object * @param string $pro...
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use DB; use Session; use Illuminate\Support\Facades\Redirect; use App\Http\Requests; use Cart; session_start(); class CheckoutController extends Controller { public function login_checkout() { $category_product = DB::table('tbl_categ...
<?php namespace jmashore\Signature\Exceptions; class SignatureKeyException extends SignatureException { }
@extends('backend.layouts.master') @section('title','Update Sale') @section('content') <div class="span9"> <div class="content"> @if(Session::has('message')) <div class="alert alert-success"> {{Session::get('message')}} </div> @...
<div class="login_page"> <h1>Welcome to Get it Done!</h1> <p>Before you can start shopping at our on-line shop, you will need to log in.</p> <div class="handling_errors"></div> <form class="login" action="./ajax/login_ajax.php" method="post"> <fieldset> <legend>Let's Log In to your account!</legend> Usernam...
<?php /** * @package Options_Framework * @author Devin Price <devin@wptheming.com> * @license GPL-2.0+ * @link http://wptheming.com * @copyright 2010-2014 WP Theming */ /** * Sanitization for text input * * @link http://developer.wordpress.org/reference/functions/sanitize_text_field/ */ add_filte...
@extends('layouts.plantilla') @section('img-logo') <a href="#" id="logo"><img src="{{asset('assets/images/logo-page.jpg')}}" alt="" /></a> @endsection @section('contenido') <div id="content"> <div id="zoo"> <h1>The Zoo</h1> <h3>We Have Free Templates for Everyone</h3> <p>Our website...
@extends('datacapturer.home') @section('content') <!-- Content Header (Page header) --> <!-- Content Header (Page header) --> <div class="content-header"> <div class="d-flex align-items-center"> <div class="mr-auto"> <h3 class="page-title">MV School Cadets Management</h3...