text
stringlengths
2
1.03M
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/> <title><?php echo $browserTitle; ?></title> <!-- CSS --> <link href="https://fonts.googleapis.com/icon?family=Mate...
<?php namespace App\Repositories\Crecursos\Access\Enterprise; use App\Models\Crecursos\Access\Enterprise\Enterprise; use Illuminate\Support\Facades\DB; use App\Exceptions\GeneralException; use App\Events\Crecursos\Access\Enterprise\EnterpriseCreated; use App\Events\Crecursos\Access\Enterprise\EnterpriseDeleted; use ...
@extends('front_office.base_front_office') @section('content') <div id="heading-breadcrumbs" class="brder-top-0 border-bottom-0"> <div class="container"> <div class="row d-flex align-items-center flex-wrap"> <div class="col-md-7"> <h1 class="h2">Soporte</h1> ...
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace RectorPrefix20211020\Symfony\Contracts\HttpClient\Exception; /** * The ...
<?php declare(strict_types=1); /* * This file is part of the humbug/php-scoper package. * * Copyright (c) 2017 Théo FIDRY <theo.fidry@gmail.com>, * Pádraic Brady <padraic.brady@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed ...
@push('after-style') @endpush {{-- --}} <link rel="stylesheet" href="{{asset('plugins/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 // This file is auto-generated, don't edit it. Thanks. namespace AlibabaCloud\SDK\Trademark\V20180724\Models; use AlibabaCloud\Tea\Model; class UploadTrademarkOnSaleResponseBody extends Model { /** * @var string */ public $requestId; protected $_name = [ 'requestId' => 'RequestId...
<?php /********************************************************************************* * SugarCRM Community Edition is a customer relationship management program developed by * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc. * * This program is free software; you can redistribute it and/or modify it under ...
<?php namespace Weasel\Command; use FilesystemIterator; use RecursiveDirectoryIterator; use RecursiveIteratorIterator; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; u...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateReviews extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('reviews', function (...
<?php /** * XiinEngine * * * XiinEngine is supplied under the MIT license. Please read license.md in the root directory * * @package XiinEngine Legacy * @author Ian Karlsson <ian.karlsson@xiinet.com> * @author Philip Whitehall <philip.whitehall@xiinet.com> * @copyright Copyright 2006-2013 Xiin Networks <http:...
<?php /* * This file is part of the BoulzyManagerBundle package. * * (c) Rémi Houdelette <https://github.com/B0ulzy> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Tests\Boulzy\ManagerBundle\Manager; use Boulzy\Manage...
<?php namespace Comicat\Slack\Api\Model; class UsergroupsEnablePostResponsedefault { /** * Note: PHP callstack is only visible in dev/qa * * @var string */ protected $callstack; /** * * * @var string */ protected $error; /** * * * @var bool ...
<?php class M002 implements IMigration { public static function getName() { return __CLASS__; } public static function run() { db::getInstance()->Query('UPDATE pages SET status=:status', [ 'status' => Status::Active]); } } ?>
<?php use yii\helpers\Html; use yii\widgets\ActiveForm; /* @var $this yii\web\View */ /* @var $model backend\models\MahasiswaSearch */ /* @var $form yii\widgets\ActiveForm */ ?> <div class="mahasiswa-search"> <?php $form = ActiveForm::begin([ 'action' => ['index'], 'method' => 'get', ]); ?> ...
<?php /** * Created by PhpStorm. * User: 25851 * Date: 2017.4.23 * Time: 0:43 */ namespace app\index\controller; class Detail extends \think\Controller { public function Detail() { $map = input('blog_id'); $detail = db('blog_art')->where('blog_id',$map)->find(); $this->assign('detail',$detail); ret...
<?php // +---------------------------------------------------------------------- // | WeChatDeveloper // +---------------------------------------------------------------------- // | 版权所有 2018~2022 // +---------------------------------------------------------------------- // | 官方网站: http://localhost // +---------------...
<?php /** * Copyright 2002-2003 Richard Heyes * Copyright 2006-2008 Anish Mistry * Copyright 2009-2017 Horde LLC (http://www.horde.org/) * * See the enclosed file LICENSE for license information (BSD). If you * did not receive this file, see http://www.horde.org/licenses/bsd. * * @package ManageSieve * @auth...
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; class CategoryController extends Controller { /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { return view('pages.parkings.categories.index'); } ...
<?php class Security_test extends CI_TestCase { public function set_up() { // Set cookie for security test $_COOKIE['ci_csrf_cookie'] = md5(uniqid(mt_rand(), TRUE)); // Set config for Security class $this->ci_set_config('csrf_protection', TRUE); $this->ci_set_config('csrf_token_name', 'ci_csrf_token'); ...
<?php interface Search { public function all(); } class User implements Search { public function all(){ return 'Obteniendo a los Users, XML'; } } class Post implements Search { public function all(){ return 'Obteniendo a los Posts, JSON'; } } $user = new User(); echo $user->all()...
<?hh // strict class :foo { attribute Stringish xlink:href, float opacity; } function testAttributeWithColon(): void { <foo xlink:href="foo" opacity={0.25} />; }
<?php /** * @package omeka * @subpackage search * @copyright 2012 Rector and Board of Visitors, University of Virginia * @license http://www.apache.org/licenses/LICENSE-2.0.html */ class ResultsControllerTest_SearchExhibits extends SolrSearch_Case_Default { protected $_isAdminTest = false; ...
<?php namespace Joy\VoyagerBreadPdfTemplate\Database\Seeders; use Joy\VoyagerBreadPdfTemplate\Models\PdfTemplate; use Illuminate\Database\Seeder; class PdfTemplatesTableSeeder extends Seeder { /** * Auto generated seed file. * * @return void */ public function run() { if (PdfT...
@extends('layouts.dbf') @section('content') <link href="{{ asset('dbf-style/css/login.css') }}" rel="stylesheet"> <div class="row"> <div align="center" class="col-md-12" > <img src="{{ asset('dbf-style/images/dbflogo.png') }}" style="margin-top: 5%"> </div> <div id="login" class="col-md-12"> ...
<?php return array( 'Documents'=>'Dokumenty', 'Doc ID'=>'Id dokumentu', 'Title'=>'Tytuł', 'Text'=>'Opis', 'Tag'=>'Słowa kluczowe', 'File'=>'Plik', 'Category ID'=>'Kategoria', 'Categories' => 'Kategorie', 'Visible' => 'Widoczny', 'Name' => 'Nazwa kategorii', 'Icon' => 'Ikona',...
@extends('layouts.nova') @section('content') <h2>Detail peserta didik tidak aktif</h2> <div class="card"> <div class="card-body"> <table class="table table-borderless"> <tr> <th>Nama Siswa</th> <th>:</th> <td>{{$data->name}}</td> </tr> <tr> <th>NIS</th> <th>:</th> <td>{{$data->nis}}...
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; class HomeController extends Controller { /** * Create a new controller instance. * * @return void */ public function __construct() { $this->middleware('auth',['except' => ['home','action','about']]); } ...
<x-dashboard-layout> <div class="dashboard-content"> <div class="container content"> <h3 class="mb-3 align-items-start content-title"> LES PARTENAIRES <a href="{{ route('partenaire.create') }}" class="float-right"><button class="btn-custom">AJOUTER</button...
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Sede extends Model { protected $fillable = ['idsede','sede','direccion']; protected $primaryKey = 'idsede'; /*public function gerencias() { return $this->hasMany('App\Gerencia'); }*/ }
<?php use Faker\Generator as Faker; $factory->define(App\Model\Product::class, function (Faker $faker) { return [ 'name' => $faker->word, 'detail' => $faker->paragraph, 'price' => $faker->numberBetween(100, 1000), 'stock' => $faker->randomDigit, 'discount' => $faker->nu...
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Employee extends Model { use HasFactory; protected $guarded = []; protected $dates = ['created_at', 'updated_at']; }
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Comment extends Model { // protected $fillable = [ 'body', 'url', 'user_id', 'comment_id', 'comment_type', ]; public function commentable(){ return $this->morphTo(); } public function user()...
<?php // This file is auto-generated, don't edit it. Thanks. namespace AlibabaCloud\SDK\Baas\V20181221\Models; use AlibabaCloud\SDK\Baas\V20181221\Models\DescribeFabricOrganizationDeletableResponseBody\result; use AlibabaCloud\Tea\Model; class DescribeFabricOrganizationDeletableResponseBody extends Model { /** ...
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Tarefa extends Model { protected $fillable = ['descricao']; }
<?php declare(strict_types = 1); /** * /src/EventSubscriber/AuthenticationSuccessSubscriber.php * * @author TLe, Tarmo Leppänen <tarmo.leppanen@protacon.com> */ namespace App\EventSubscriber; use App\Doctrine\DBAL\Types\EnumLogLoginType; use App\Utils\LoginLogger; use Lexik\Bundle\JWTAuthenticationBundle\Event\Au...
<?php declare(strict_types=1); namespace Rabbit\DB\Redis; use Throwable; use Rabbit\Base\App; use Rabbit\Pool\PoolManager; use Rabbit\Base\Core\Exception; use Rabbit\Base\Helper\ArrayHelper; use Rabbit\Pool\AbstractConnection; class Connection extends AbstractConnection { use ClusterTrait; private string $...
<?php namespace App\Http\Controllers; use App\Entreprise; use Illuminate\Http\Request; class EntrepriseController extends Controller { public function __construct() { $this->middleware('auth'); } public function add() { return view('entreprise.add'); } public function pers...
<?php the_content(); <div class="blog-post"> <h2 class="blog-post-title"><?php the_title(); ?></h2> <p class="blog-post-meta"><?php the_date(); ?> par <a href="#"><?php the_author(); ?></a></p> ?> <?php if ( has_post_thumbnail() ) { the_post_thumbnail(); } ?> </div><!-- /.blog-post -->
<?php return [ /* * Google Place API Key */ 'googlePlacesAPIKey' => env('GOOGLEPLACES_API_KEY', ''), ];
<li class="nav-item {{ $class ?? '' }}"> @if(empty($route) || '-' === $route) <span class="nav-link {{ $contentClass ?? '' }}" {{ $options ?? '' }}> {{ $slot }} </span> @else <a class="nav-link @if(Request::url() == $route) active @endif {{ $contentClass ?? '' }}" href="{{ $r...
<?php require_once 'Mailchimp/Folders.php'; require_once 'Mailchimp/Templates.php'; require_once 'Mailchimp/Users.php'; require_once 'Mailchimp/Helper.php'; require_once 'Mailchimp/Mobile.php'; require_once 'Mailchimp/Conversations.php'; require_once 'Mailchimp/Ecomm.php'; require_once 'Mailchimp/Neapolitan.php'; requ...
<div class="container-fluid px-4"> <h1 class="mt-4">Dashboard</h1> <ol class="breadcrumb mb-4"> <li class="breadcrumb-item active">Dashboard</li> </ol> <div class="row"> <div class="col-xl-3 col-md-6"> <div class="card bg-primary text-white mb-4"> <div class="...
<?php /* Template Name: Mensagens */ get_header('page'); ?> <link href="<?=get_template_directory_uri()?>/css/style-mensagem.css" type="text/css" rel="stylesheet" /> <div class="header--slogan padding-default"> <div> <h1>Mensagens</h1> </div> </div> </header> <main> <section class="sec-mensag...
<?php /** * Magento * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 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/osl-3.0.php * If you did not receive a co...
<?php namespace Ornito\ObservationBundle\Controller; use Ornito\ObservationBundle\Entity\Watching; use Ornito\ObservationBundle\Form\WatchingType; use Ornito\ObservationBundle\Form\WatchingValidateType; use Symfony\Bundle\FrameworkBundle\Controller\Controller; use Symfony\Component\HttpFoundation\Request; use Symfony...
<?php namespace AdminBundle\Controller; use Symfony\Bundle\FrameworkBundle\Controller\Controller; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; class DefaultController extends Controller { public function indexAction() { return $this-...
<nav class="quick-nav"> <a class="quick-nav-trigger" href="#0"> <span aria-hidden="true"></span> </a> <ul> <li> <a href="https://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes" target="_blank" class="active"> <span>Purchas...
<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Petugas_model extends CI_Model { private $Tabel ='tbl_petugas'; private $id_petugas; private $nama; private $img; private $jenis_kelamin; private $alamat; private $password; private $hp; public function ru...
<?php use yii\helpers\Html; use yii\helpers\Url; use yii\grid\GridView; use yii\helpers\ArrayHelper; use kartik\select2\Select2; use kartik\depdrop\DepDrop; // use app\models\TagihanSearch; // use keygenqt\autocompleteAjax\AutocompleteAjax; use yii\widgets\ActiveForm; /* @var $this yii\web\View */ /* @var $searchMode...
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Rol extends Model { public function Involucrado(){ return $this->hasMany('App/Involucrado'); } }
<?php /** * Test d'acceptation DeleteTask * Suppression d'une tâche. * * PHP version 5.3.0 * * @category Test * @package DzTaskModule * @subpackage Acceptance * @author Adrien Desfourneaux (aka Dieze) <dieze51@gmail.com> * @license http://www.opensource.org/licenses/mit-license.html MIT License ...
<?php /** * @backupGlobals disabled * @backupStaticAttributes disabled */ require_once __DIR__."/../src/Cuisine.php"; require_once __DIR__."/../src/Restaurant.php"; $DB = new PDO('pgsql:host=localhost;dbname=best_restaurants_test'); class CuisineTest extends PHPUnit_Framework_TestCas...
§<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Sale_update_controller extends CI_Controller { public function update_shoes_ellos_1() { $key = $_GET['key']; $secret_key = '70C75240DAE7ASAS32452SA45227CDEFEEE70A0B2A12'; if($key !== $secret_key) { ...
@extends('admin.layouts.app') @section('title','Admin panel') @section('content') <div class="container-fluid"> <div class="row"> <div class="col-12"> <div class="page-title-box"> <h4 class="page-title float-left">Dashboard</h4> <ol class...
<?php namespace App; use Illuminate\Contracts\Auth\MustVerifyEmail; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; class User extends Authenticatable { use Notifiable; /** * The attributes that are mass assignable. * * @var array */ p...
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace ECSPrefix20210507\Symfony\Component\DependencyInjection\Compiler; use EC...
<?php use Aws\Common\Aws; use Aws\Common\Enum\Region; use Aws\S3\Enum\CannedAcl; use Aws\S3\Exception\S3Exception; class UploadController extends AppController { public $autoRender = false; public function index() { $post = $this->request->data; $response = ''; $contentT...
<?php namespace User\Plugin; use Zend\Mvc\Controller\Plugin\AbstractPlugin; use Zend\ServiceManager\ServiceManager; use Zend\Authentication\AuthenticationService; class ActiveUser extends AbstractPlugin{ /** * The authentication service * * @var AuthenticationService */ private $authServic...
<?php namespace Kunstmaan\PagePartBundle\Tests\Form; use Kunstmaan\PagePartBundle\Form\ToTopPagePartAdminType; use Kunstmaan\PagePartBundle\Tests\unit\Form\PagePartAdminTypeTestCase; /** * Generated by PHPUnit_SkeletonGenerator on 2012-08-20 at 12:03:51. */ class ToTopPagePartAdminTypeTest extends PagePartAdminTyp...
<?php /** * Methods for displaying presentation data in the view. * * CakePHP(tm) : Rapid Development Framework (http://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.t...
<?php namespace Chamilo\Core\Repository\ContentObject\PeerAssessment\Builder; use Chamilo\Core\Repository\ContentObject\PeerAssessment\Builder\Php\Lib\Manager\BuilderWizard; use Chamilo\Core\Repository\ContentObject\PeerAssessment\Builder\Php\Lib\Manager\BuilderWizardPage; use Chamilo\Core\Repository\ContentObject\Pee...
{!! Form::open(array('url'=>'articulo','method'=>'GET','autocomplete'=>'off','role'=>'search')) !!} <div class="col-md-12 col-sm-12 col-xs-12" style="margin-left:-10px;"> <br> <div class="col-md-6 col-sm-6 col-xs-12"> <input type="text" class="form-control" placeholder="Search for..." value="{{$searchText}}" ...
<?php /** * Mmi Framework (https://github.com/milejko/mmi.git) * * @link https://github.com/milejko/mmi.git * @copyright Copyright (c) 2010-2016 Mariusz Miłejko (http://milejko.com) * @license http://milejko.com/new-bsd.txt New BSD License */ namespace CmsAdmin\Form; use Cms\Form\Element; class Log...
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Handles server binary log page. * * @package PhpMyAdmin */ use PhpMyAdmin\Controllers\Server\ServerCollationsController; use PhpMyAdmin\Di\Container; use PhpMyAdmin\Response; require_once 'libraries/common.inc.php'; $container = Container::getDefaultContainer...
<?php /** * author: crisen * email: crisen@crisen.org * date: 18-12-4 * description: */ namespace Crisen\AI\Contracts; interface DriverInterface { /** * choose which gateway * @param $name * @return mixed */ public function gateway($name); }
@extends('welcome') @section('content') <div class="container"> <div class="row"> <div class="col-lg-8 col-md-10 mx-auto"> <a href="{{ route('add.category')}}" class="btn btn-danger">Add Category</a> <a href="{{ route('all.category') }}" class="btn btn-info">All Category</a> <hr> <br> ...
<?php use ActiveRecord\Column; require_once __DIR__ . '/../lib/adapters/MysqlAdapter.php'; class MysqlAdapterTest extends AdapterTest { public function set_up($connection_name=null) { parent::set_up('mysql'); } public function test_enum() { $author_columns = $this->conn->columns('authors'); $this->assert_...
<?php /** * ZF3 book Zend Framework Center Example Application * * @authorSkeleton Ralf Eggert <ralf@travello.de> * @author Mirco Klink * @linkSkeleton https://github.com/zf3buch/zendframework-center * @link https://github.com/MiKliWeb87/Zend3_Projekt2 * @license http://opensource.or...
<?php include("conexao.php"); session_start(); if( (!isset($_SESSION['usuario']) == true ) ) { unset ($_SESSION['login']); header('location:login.php'); } $sessaousuario = $_SESSION ['usuario']; // Ativando esta variável + 'nome' = inicia a visualização do perfil do usuário// ?> <!DOCTYPE html> <html> <head> ...
<?php /** * Bulk actions scripts. * * @since 3.0.0 */ // File Security Check if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Add Bulk edit fields. * */ function presscore_add_bulk_edit_fields( $col, $type ) { // display for one column if ( $col !== 'presscore-sidebar' ) { return; } $no_change_option = '<op...
<!-- Begin Page Content --> <div class="container-fluid"> <!-- Page Heading --> <div class="d-sm-flex align-items-center justify-content-between mb-4"> <h1 class="h3 mb-0 text-gray-800">Detail <?= $title ?></h1> </div> <div class="card shadow mb-4"> <div class="card-header py-3 d-flex flex-row align-items-cen...
<?php namespace Tadcms\Modules\Commands; use Illuminate\Support\Str; use Tadcms\Modules\Support\Config\GenerateConfigReader; use Tadcms\Modules\Support\Stub; use Tadcms\Modules\Traits\ModuleCommandTrait; use Symfony\Component\Console\Input\InputArgument; class RuleMakeCommand extends GeneratorCommand { use Modul...
<div class="footer"> <div class="container"> <div class="col-md-4 footer-grid"> <h3>About Us</h3> <p>Developed by Lianne Visperas and Benjamin Uttoh as a partial requirement for IS 226 (Web Information Systems). This template made is free to use, however, we cannot provide support after June 2019.</p> </div>...
<?php use Illuminate\Database\Seeder; use App\Movie; use App\Room; use App\Seat; class general extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { // users // password is for all users secret $users = [ [ ...
@extends('layout.main') @section('content') <div class="row"> <div class="col-lg-12 margin-tb"> <div class="pull-left"> </div> <div class="pull-right"> <a class="btn btn-success" href="{{ route('students.create') }}"> Create</a> </div> ...
<?php namespace app\modules\epi\controllers; use yii\web\Controller; /** * Default controller for the `epi` module */ class DefaultController extends Controller { /** * Renders the index view for the module * @return string */ public function actionIndex() { return $this->render(...
<?php return [ /* |-------------------------------------------------------------------------- | Authentication Defaults |-------------------------------------------------------------------------- | | This option controls the default authentication "guard" and password | reset options for y...
<?php use GuzzleHttp\json_decode; require_once 'tests/api/SynapseTestHelper.php'; class AcademicYearCest extends SynapseTestHelper { private $token; private $organization = 1; private $inValidOrganization = -200; private $name = "Academic Year 2015"; private $yearId = "201516"; private $s...
<?php declare(strict_types=1); namespace App\DataAccess\DynamoDb; use App\DataAccess\Repository\ActorCodesInterface; use Aws\DynamoDb\DynamoDbClient; class ActorCodes implements ActorCodesInterface { use DynamoHydrateTrait; /** * @var DynamoDbClient */ private $client; /** * @var st...
<div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> <i class="fa fa-users"></i> City Management <small>Add / Edit City</small> </h1> </section> <section class="content"> <div class="row"> <div clas...
<?php if(!defined('INITIALIZED')) exit; $ok = "/[a-zA-Z0-9._-]+@[a-zA-Z0-9-]+\.[a-zA-Z]{2,4}/"; echo '<?xml version="1.0" encoding="utf-8" standalone="yes"?>'; $email = trim($_REQUEST['email']); if(empty($email)) { echo '<font color="red">Please enter an e-mail.</font>'; exit; } if(strlen($email) < 255) { if(preg_...
<?php $column_width = (int)(80/count($columns)); if(!empty($list)){ ?><div class="bDiv" > <table cellspacing="0" cellpadding="0" border="0" id="flex1"> <thead> <tr class='hDiv'> <?php foreach($columns as $column){?> <th width='<?php echo $column_width?>%'> <div class="text-left field-sorting <...
<?php /* WebProfilerBundle:Profiler:base_js.html.twig */ class __TwigTemplate_1f71b64bf3f9d4a37331b9e019c923dd4a4034330fac5fb5986db2319e46e4d4 extends Twig_Template { public function __construct(Twig_Environment $env) { parent::__construct($env); $this->parent = false; $this->blocks =...
@extends('layouts.master') @section('css') @endsection @section('content') <div class="main-content"> <div class="main-content-inner"> <div class="page-content"> @include('layouts.includes.template_setting') <div class="page-header"> <h1> ...
<?php /* * This file is part of the Monolog package. * * (c) Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Google\Site_Kit_Dependencies\Monolog\Handler\Curl; class Util { privat...
<?php $nonce = wp_create_nonce( 'forminator_save_import_quiz' ); ?> <div class="sui-box-body wpmudev-popup-form"> <div class="sui-notice sui-notice-error wpmudev-ajax-error-placeholder sui-hidden"><p></p></div> <div class="sui-form-field"> <textarea class="sui-form-control" rows="10" name="importable"></textare...
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class Cart extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('carts', function (Blueprint $ta...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateRolesUsersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('role_user', ...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateSuppliersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('suppliers', f...
@extends('mail.template') @section( 'title' ) Reset hasła: @stop @section( 'content' ) Cześć!<br><br> Otrzymaliśmy prośbę o zmianę Twojego hasła do konta w panelu administracyjnym. Aby ustawić nowe hasło kliknij <a href="{{ route('admin.reset.token', $token) }}">tutaj</a>.<br><br> Jeśli to pomyłka i nie ch...
<? $MESS ['subscr_conf'] = "Subscription confirmed:"; $MESS ['subscr_yes'] = "Yes"; $MESS ['subscr_no'] = "No"; $MESS ['subscr_conf_code'] = "Please enter the subscription confirmation code"; $MESS ['subscr_conf_date'] = "Confirmation code generation date"; $MESS ['subscr_act'] = "Subscription active:"; $MESS ['subscr_...
<!DOCTYPE html> <html lang="zxx"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="description" content="Organic Food Html Template"> <meta name="keywords" content="orgenik,organic,food,marketing,shop,product,organic food,farmer,agriculture,fruits,vegetables,healthy food,resp...
<?php namespace AppBundle\Controller; use AppBundle\Entity\Phone; use Symfony\Bundle\FrameworkBundle\Controller\Controller; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;use Symfony\Component\HttpFoundation\Request; /** * Phone controller. *...
@extends('layouts.main') @section('title') 人才招聘 @stop @section('specss') @parent <link rel="stylesheet" href="{{ asset('/css/djfp.css') }}"> @stop @section('actDjfp') active @stop @section('head') @include('layouts.head') @endsection @section('header') @include('layouts.nav') @stop @section('content') <div class=...
<?php use Migrations\AbstractMigration; use Phinx\Db\Adapter\MysqlAdapter; class CreateCalendarAttendees extends AbstractMigration { /** * Change Method. * * More information on this method is available here: * http://docs.phinx.org/en/latest/migrations.html#the-change-method * @return voi...
@extends('layouts.app') @section('content') <div class="container"> <div class="row"> <div class="col-lg-5"> <div class="search-heading"> <h5>What</h5> </div> <div class="search-title"> <p>Job title, keywords, or company </p> ...
<?php defined('BASEPATH') OR exit('No direct script access allowed'); /** * Created by Muhanz. */ class Mustache{ private $CI; private $mustache; public function __construct() { $this->CI =& get_instance(); } public function parser_tpl($template, $data) { $this->m...
<?php /** * HUBzero CMS * * Copyright 2005-2015 HUBzero Foundation, LLC. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights ...
<?php $conn = new mysqli('localhost', 'root', '', 'db_pasien'); if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); }