text
stringlengths
2
1.03M
<?php /* Smarty version Smarty-3.1.7, created on 2022-01-28 21:24:21 compiled from "/var/www/html/includes/runtime/../../layouts/v7/modules/Vtiger/uitypes/Boolean.tpl" */ ?> <?php /*%%SmartyHeaderCode:166812165861f45f0562a899-12884183%%*/if(!defined('SMARTY_DIR')) exit('no direct access allowed'); $_valid = $_...
<?php /* * This file is part of Class Preloader. * * (c) Graham Campbell <graham@alt-three.com> * (c) Michael Dowling <mtdowling@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace ClassPreloader\Parser; use Cl...
@extends('layouts.adminU') @section('contenido') <div class="container"> <div class="row"> <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <div class="panel panel-default"> <div class="panel-heading">Sitio</div> <div cla...
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Client extends Model { use HasFactory; protected $fillable = [ 'cpf', 'name', 'mobile_phone', 'leased_quantity' ]; public function cars() { return $th...
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Administrator | Log in</title> <!-- Tell the browser to be responsive to screen width --> <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"> ...
<?php namespace App\Http\Resources\Admin; use Illuminate\Http\Resources\Json\JsonResource; class IncomeCategoryResource extends JsonResource { public function toArray($request) { return parent::toArray($request); } }
<?php session_start(); if (isset($_POST['send-comment'])) { require 'dbconnection.php'; $user = $_SESSION['uName']; $cmt = $_POST['cmttext']; $msg = $_POST['mid']; $sql = "INSERT INTO comments (mid, user, comment) VALUES ('$msg', '$user', '$cmt')"; $stmt = mysqli_stmt_init($conn); if (!mysqli_st...
<?php namespace App; use Illuminate\Database\Eloquent\Model; class answers extends Model { // }
<?php /** * Copyright (c) 2011 Georg Ehrke <ownclouddev at georgswebsite dot de> * This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. */ OCP\User::checkLoggedIn(); OCP\App::checkAppEnabled('calendar'); // Create default calendar ... $calendars = OC_C...
<?php namespace Payum2\Heartland\Soap\Base; /** * This class is generated from the following WSDL: * https://heartlandpaymentservices.net/BillingDataManagement/v3/BillingDataManagementService.svc?xsd=xsd2 */ class BillPresentment { const UNASSIGNED = 'Unassigned'; const FULL = 'Full'; }
<?php defined('BASEPATH') or exit('No direct script access allowed'); class Farm extends Authenticated_Controller { public function berry_bush() { set_title("Berry Farm"); $this->load->view("explore/edith/berry_bush"); } }
<?php /** * BINSHOPS | Best In Shops * * @author BINSHOPS | Best In Shops * @copyright BINSHOPS | Best In Shops * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * Best In Shops eCommerce Solutions Inc. * */ require_once dirname(__FILE__) . '/../AbstractRESTController.php...
<!doctype html> <html lang="en"> <head> <?php include 'includes/meta.php' ?> <?php include 'includes/styles.php' ?> <title>Serv</title> </head> <body class="antialiased"> <div class="relative"> <!-- top --> <div class="hero-bg"> <!-- header --> <?php isset($_GET...
<?php namespace App\Http\Controllers\doctor; use App\Models\Patient; use Illuminate\Http\Request; use App\Http\Controllers\Controller; class PatientController extends Controller { /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() ...
<?php return [ 'The application' => 'L\'applicazione', 'is currently under maintenance.' => 'è in manutenzione..', 'Thank you for your understanding.' => 'Grazie per la vostra comprensione.', ] ;
<? if(empty($_POST['ip'])){ $_POST['ip'] = $_SERVER['REMOTE_ADDR']; } require('./phpip2country.class.php'); include('../../connect.php'); /*RESELLER*/ $user_id = $_POST["user_id"]; $user_name = $_POST["user_name"]; $sql0 = " SELECT * FROM admin_reseller WHERE reseller_company = '$user_name' AND reseller_type = 'Adm...
<?php /* partials/modal-add-package.html.twig */ class __TwigTemplate_f365448037e92486e0231d1f6bf408b5c5657c56eb8d07aab3a018e7481aa59d extends Twig_Template { public function __construct(Twig_Environment $env) { parent::__construct($env); $this->parent = false; $this->blocks = array( ...
<?php defined('BASEPATH') OR exit('No direct script access allowed'); class JurusanMatkul extends CI_Controller { public function __construct(){ parent::__construct(); if (!$this->ion_auth->logged_in()){ redirect('auth'); }else if (!$this->ion_auth->is_admin()){ show_error('Hanya Administrator yang diber...
<nav class="navbar navbar-expand-md navbar-light bg-white shadow-sm"> <div class="container"> <a class="navbar-brand" href="{{ url('/') }}"> {{ config('Sistema', 'Sistema de notas') }} </a> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSu...
<?php /** * Copyright (c) BrownBear, 2011-present. All Rights Reserved. * * This file is a part of Tuleap. * * Tuleap is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or ...
<?php namespace Container7wURIMe; use Symfony\Component\DependencyInjection\Argument\RewindableGenerator; use Symfony\Component\DependencyInjection\Exception\RuntimeException; /** * @internal This class has been auto-generated by the Symfony Dependency Injection Component. */ class getSessionService extends App_Ke...
<?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; use Illuminate\Http\Exceptions\HttpResponseException; use Illuminate\Validation\Rule; use Illuminate\Validation\ValidationException; class DisableChatRequest extends FormRequest { /** * Determine if the user is authorized to make...
<?php namespace app\common\validate; use think\Validate; // 内置验证类 class Teacher extends Validate { protected $rule = [ 'username' => 'require|unique:teacher|length:4,25', 'name' => 'require|length:2,25', 'sex' => 'in:0,1', 'email' => 'require|email', ]; protected $scene...
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateSalesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('sales', function ...
<?php // +---------------------------------------------------------------------- // | likeshop100%开源免费商用商城系统 // +---------------------------------------------------------------------- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力 // | 开源版本可自由商用,可去除界面版权logo // | 商业版本务必购买商业授权,以免引起法律纠纷 // | 禁止对系统程序代码以任何目的,任何形式的再发布 // | gitee下载:https://g...
<?php /** * @author Ross Perkins <ross@vubeology.com> */ namespace Vube\FileSystem; /** * File/Directory Installer interface * * @author Ross Perkins <ross@vubeology.com> */ interface iInstaller { /** * Recursively mkdir with the appropriate $mode * * Note: In PHP 5.4+ mkdir() supposedly sets correct p...
<div class="container-wrapper--detailpage" > <div class="container-fluid"> <div class="container-breadcrumb"> <nav aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="#">หน้าแรก</a></li> <li class="breadcru...
<?php namespace App\Entity\Traits; use Doctrine\ORM\Mapping as ORM; use DateTime; /** * Trait DateTrait * @package Application\Entity\Traits */ trait TimestampTrait { /** * @var DateTime|null * @ORM\Column(type="datetime", nullable=true) */ private $createdAt; /** * @var DateTime|...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateImagesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('images', functio...
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="viewport" content="width=device-width,initial-scale=1, user-scalable=no" /> <title>CodeIgniter</title> <!--[if lt IE 9]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></sc...
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta charset="UTF-8"> <meta name="description" content="منتجات"> <meta name="keywords" content="احذيه, شنط, اكسسوارات"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" cont...
<?php namespace App; use Zizaco\Entrust\EntrustRole; class Role extends EntrustRole { protected $primaryKey = 'role_id'; }
<?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 Symfony\Component\Console\Helper; use Symfony\Component\Console\Excepti...
<?php return [ '@class' => 'Grav\\Common\\File\\CompiledYamlFile', 'filename' => 'E:/WEBDEV/PORTFOLIO/portfolio/user/plugins/admin/languages/pt.yaml', 'modified' => 1547431397, 'data' => [ 'PLUGIN_ADMIN' => [ 'ADMIN_BETA_MSG' => 'Esta é uma versão Beta! Use por sua conta em risco...'...
<?php /** * @group search */ final class PhabricatorSearchResultView extends AphrontView { private $handle; private $query; private $object; public function setHandle(PhabricatorObjectHandle $handle) { $this->handle = $handle; return $this; } public function setQuery(PhabricatorSearchQuery $qu...
<?php namespace App\Exceptions; use Exception; use App\Exceptions\CouponCodeUnavailableException; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; class Handler extends ExceptionHandler { /** * A list of the exception types that are not reported. * 制定错误类型不记录在 storage/logs 错误文件中 *...
<?php use yii\helpers\Html; use yii\grid\GridView; /* @var $this yii\web\View */ /* @var $dataProvider yii\data\ActiveDataProvider */ $this->title = 'Orders'; $this->params['breadcrumbs'][] = $this->title; ?> <div class="order-index"> <h1><?= Html::encode($this->title) ?></h1> <p> <?= Html::a('Crea...
<!-- Header --> <?php $this->load->view('portal/template-portal-header'); ?> <link href="public/css/portal/index-listing-filter.css" rel="stylesheet" type="text/css"> <!-- content --> <section> <div class="top-tab"> <ul> <li> <a class="active" href="">出售房源</a> </li> <li> <a href="">出租房源<...
<?php namespace App\Http\Controllers\Admin; use Illuminate\Http\Request; use App\Http\Controllers\Controller; use App\Profile; use App\History2; use Carbon\Carbon; class ProfileController extends Controller { public function add() { return view('admin.profile.create'); } public function...
<?php namespace App\Http\Controllers\Admin; use App\Http\Controllers\Controller; use Auth; use Input; use Redirect; class LoginController extends Controller { public function login() { if (Auth::user()) { return Redirect::to("/admin/dashboard"); } return view('Admin.Login'); ...
<?php namespace app\admin\controller; use app\admin\controller\Base; class Statistics extends Base { // 显示柱状图,每日订单 public function histogram() { return $this->fetch(); } // 显示折线图 public function line_chart() { return $this->fetch(); } // 显示时间轴 public function time_chart() { return $this->fetch(); ...
<?php namespace App\Http\Controllers; use App\Components\Helpers; use App\Http\Models\SsGroup; use App\Http\Models\SsNode; use App\Http\Models\User; use App\Http\Models\UserLabel; use App\Http\Models\UserSubscribe; use App\Http\Models\UserSubscribeLog; use Illuminate\Http\Request; use Redirect; use DB; /** * 订阅控制器 ...
<?php use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateGendersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('genders', function (Blueprint $table) { $t...
<div class="table-responsive"> <table class="table table-bordered" id="html_table" width="100%"> <thead class="m-datatable__head"> <tr> <th class="text-center">#</th> <th class="text-center">{{__('text.name')}}</th> <th class="text-center">{{__('text.mobile')...
@extends('master') @section('content') <div class="custom_product"> <div class="col-md-6"> <table class="table table-sm table-dark"> <thead> <tr> <th scope="col">#</th> <th scope="col">Name</th> <th scope="col">Price</th> <th scope="co...
<?php /** * [Laike System] Copyright (c) 2018 laiketui.com * Laike is not a free software, it under the license terms, visited http://www.laiketui.com/ for more details. */ require_once(MO_LIB_DIR . '/DBAction.class.php'); require_once(MO_LIB_DIR . '/ShowPager.class.php'); require_once(MO_LIB_DIR . '/Tools.class...
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Employee extends Model { protected $fillable = [ 'name', 'email', 'phone','address', 'experience', 'photo','nid_no', 'salary', 'vacation', 'city', ]; }
<?php use App\Models\Product; use Illuminate\Http\Request; use Illuminate\Support\Facades\Route; use App\Http\Controllers\UserController; use App\Http\Controllers\ProductController; Route::middleware('auth:sanctum')->get('/test', function (Request $request) { return $request->user(); }); Route::resource('/produ...
<table class="table table-striped table-bordered table-hover call-log"> <thead> <tr> <th> Lần gọi </th> <th> Thời gian </th> <th> Ai gọi </th> <th> Trạng thái ...
<?php declare(strict_types=1); namespace JMS\Serializer\Tests\Fixtures; use JMS\Serializer\Annotation as Serializer; /** * @Serializer\Exclude("NONE") */ class SimpleInternalObject extends \Exception { private $bar; protected $camelCase = 'boo'; public function __construct($foo, $bar) { ...
<!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>Layouts</title> <link rel="stylesheet" href="{{ asset('css/app.css') }}"> </head> <body class="bg-gray-20...
@extends('layout.master') @section('title', 'Home') @section('content') <style> a:hover, a:active, a:focus { outline: none; text-decoration: none; color: #fff; } .leavetype { padding: 8px; margin-top: 15px; } </style> <!-- Content Wrapper. Contains page content --> <div class="con...
<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Account_model extends CI_Model { public function account_view() { return $this->db->select('*') ->from('acc_account_name') ->order_by('account_id', 'desc') ->get() ->result()...
@extends('layouts.principal') @section('contenido') <div class="app-content content"> <div class="content-overlay"></div> <div class="content-wrapper"> <div class="content-header row"> <div class="content-header-left col-md-6 col-12 mb-2"> <h3 class="content-header-title mb-...
<?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 if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Taxe_marche_public_model extends CI_Model { protected $table = 'taxe_marche_public'; public function add($taxe_marche_public) { $this->db->set($this->_set($taxe_marche_public)) ->insert($this-...
@extends('frontOffice.layout') @section('head') @include('frontOffice.inc.head', ['title' => 'WellPic - Mentions Légales', 'description' => 'Wellpic est une application éditée par la société BECOOL STUDIO SARL, Propulsée par BluePen Labs' ]) @endsection @section('header') @include('frontOffice.inc...
<?php /** * This file has been @generated by a phing task by {@link BuildMetadataPHPFromXml}. * See [README.md](README.md#generating-data) for more information. * * Pull requests changing data in these files will not be accepted. See the * [FAQ in the README](README.md#problems-with-invalid-numbers] on how to make...
<section> <div class="industry"> <!-- 遍历Home.php控制器发过来的职业信息 一级分类 --> <?php foreach($first_level as $key => $value){ ?> <div class="industry-intro"> <a href="http://<?php echo $localhost; ?>/Home/two_list/<?php echo $value['id']; ?>"><im...
<?php final class FileFinderTestCase extends PhutilTestCase { private function newFinder($directory = null) { if (!$directory) { $directory = dirname(__FILE__).'/data'; } return id(new FileFinder($directory)) ->excludePath('./exclude') ->excludePath('subdir.txt'); } public functi...
{{-- <<<<<< In this page Managers can check All statistics >>>>>> --}} @extends('layouts.app') @section('content') <div class="wrapper"> <div class="tabs"> <div class="tab"> <input type="radio" name="css-tabs" id="tab-1" checked class="tab-switch" onclick="location.href='{{ url('ana...
<?php namespace App\Modules\Notifications\Http\Controllers\Admin; use App\Modules\Notifications\Forms\NotificationsForm; use App\Modules\Notifications\Http\Requests\StoreNotificationsRequest; use App\Modules\Notifications\Models\Notifications; use Illuminate\Http\Request; use Form; use DaveJamesMiller\Breadcrumbs\Fa...
<?php namespace Illuminate\View\Compilers\Concerns; trait CompilesLoops { /** * Counter to keep track of nested forelse statements. * * @var int */ protected $forElseCounter = 0; /** * Compile the for-else statements into valid PHP. * * @param string $expression ...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateUsersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('users', function ...
<?php // autoload.php @generated by Composer require_once __DIR__ . '/composer' . '/autoload_real.php'; return ComposerAutoloaderInit3ee954de3244c0f4a2306ead84aee58b::getLoader();
<?php /** * DmTestPostTranslation filter form. * * @package retest * @subpackage filter * @author Your name here * @version SVN: $Id: sfDoctrineFormFilterTemplate.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $ */ class DmTestPostTranslationFormFilter extends BaseDmTestPostTranslationFormFilter { pu...
@section('content') <script src="https://test.oppwa.com/v1/paymentWidgets.js?checkoutId={{$responseData['id']}}"></script> <form action="{{route('front.checkoutForm',$id)}}" class="paymentWidgets" data-brands="VISA MASTER AMEX"></form> @stop
<?php namespace App\Providers; use Illuminate\Support\ServiceProvider; use Illuminate\Support\Facades\Schema; class AppServiceProvider extends ServiceProvider { /** * Bootstrap any application services. * * @return void */ public function boot() { Schema::defaultStringLength...
<?php namespace Database\Seeders; use App\Enums\MenuEnum; use App\Models\Menu; use Illuminate\Database\Seeder; class MasterDataSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { Menu::create(['menu_id' => MenuEnum::EVENT, 'menu_na...
<?php namespace frontend\models; use Yii; /** * This is the model class for table "prodi". * * @property string $Id * @property string $NamaProdi * * @property Users $users */ class Prodi extends \yii\db\ActiveRecord { /** * @inheritdoc */ public static function tableName() { ret...
<?php namespace ccxt; // PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN: // https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code use Exception; // a common import use \ccxt\ExchangeError; class lykke extends Exchange { public function describe() { retur...
<div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/id_ID/sdk.js#xfbml=1&version=v2.5&appId=1077278998952020"; fjs.parentNode.insertBefore(js, fjs); }(document...
@extends('layouts.app') @section('content') <style> .wrapper { text-align: center; } </style> <div class="wrapper" > <div class="container" id="main-img"> <div class="row justify-content-center"> <div class="col-md-8"> @if (sess...
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateServFornecTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('serv_fornec'...
<?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class updateImageValidation extends FormRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } /** ...
<?php use App\Http\Controllers\Admin\AdminController; use App\Http\Controllers\Admin\AdReportController; use App\Http\Controllers\Admin\AdvertisementController; use App\Http\Controllers\Admin\LoginController; use App\Http\Controllers\Admin\CategoryController; use App\Http\Controllers\Admin\CityController; use App\Http...
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateCollegesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('colleges', fun...
<?php namespace Gdoo\Wap\Controllers; use Auth; use Cache; use Request; use DB; use Hash; use Gdoo\User\Models\UserAsset; use Gdoo\System\Models\Setting; use Gdoo\Wechat\Services\WechatService; use Gdoo\Index\Controllers\Controller; use Gdoo\User\Services\UserAssetService; class WechatController extends Controller ...
@extends('layouts.app') @section('content') <div class="jumbotron jumbotron-fluid"> <div class="container"> <div class="row"> <div class="col-md-8 offset-md-2"> <h1 class="display-3 text-xs-center">Bevestig Lidmaatschap</h1> <p class="lead">Kijk alle gegevens nog ...
<?php /* * This software is licensed under the Apache 2 license, quoted below. * * Copyright 2015 NV3 * Copyright 2015 Vladimir Stračkovski <vlado@nv3.org> * 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 o...
<?php /** * Copyright 2013-2016 Horde LLC (http://www.horde.org/) * * @author Jan Schneider <jan@horde.org> * @license http://www.horde.org/licenses/bsd * @category Horde * @package Db * @subpackage UnitTests */ /** * @author Jan Schneider <jan@horde.org> * @license http://www.horde.org/li...
<?php /** * @var \App\View\AppView $this * @var \Queue\Model\Entity\QueuedJob $queuedJob */ ?> <nav class="actions large-3 medium-4 columns col-sm-4 col-xs-12" id="actions-sidebar"> <ul class="side-nav nav nav-pills nav-stacked"> <li class="heading"><?= __d('queue', 'Actions') ?></li> <li><?= $this->Html->link(...
@extends('argon_layouts.app', ['title' => __('Request Virtual Card')]) @section('style') <link rel="stylesheet" type="text/css" href="{{ asset('assets/css/extensions/daterangepicker.css') }}"/> <link href="{{ URL::asset('assets/css/extensions/select2.min.css') }}" rel="stylesheet"> <style> .word-wr...
@extends('layouts.hospital') @section('content') <div class="col-sm-12"> <div class="col-sm-8 col-sm-offset-2"> <p style="text-align:center"><label for="">Edit Hospital Basic Info</label></p> @include('includes.errors') {!!Form::model($basicInfo,['method'=>'POST','action'=>'Hospital\BasicInfoController@stor...
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class AddRoleInstansiOnUsersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('users',...
<?php /** * FbaOutboundApi. * * @author Stefan Neuhaus / ClouSale */ /** * Selling Partner APIs for Fulfillment Outbound. * * The Selling Partner API for Fulfillment Outbound lets you create applications that help a seller fulfill Multi-Channel Fulfillment orders using their inventory in Amazon's fulfillment ...
<?php $GLOBALS['g_last_assigned_font_id'] = 0; class Font { var $underline_position; var $underline_thickness; var $ascender; var $descender; var $char_widths; var $bbox; function ascender() { return $this->ascender; } function descender() { return $this->descender; } function e...
<?php namespace SentoWeb\LicenseJet\Endpoint; use SentoWeb\LicenseJet\LicenseJetException; use SentoWeb\LicenseJet\Resource\User; use SentoWeb\LicenseJet\Collection\UserCollection; use SentoWeb\LicenseJet\RequestBuilder\CollectionRequestBuilder; Class UserEndpoint extends Endpoint { /** * Get user by ID. ...
<?php namespace App\Console\Commands; use GuzzleHttp\Client; use Illuminate\Console\Command; class InitEs extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'es:init'; /** * The console command description. * ...
<?php declare(strict_types=1); namespace Auth0\SDK\API\Management; use Auth0\SDK\Contract\API\Management\TenantsInterface; use Auth0\SDK\Utility\Request\RequestOptions; use Auth0\SDK\Utility\Toolkit; use Psr\Http\Message\ResponseInterface; /** * Class Tenants. * Handles requests to the Tenants endpoint of the v2 ...
<?php namespace RRSVP\Stuf; class RSDStuurgegevensLa04 { /** * @var BerichtcodeLa04 $berichtcode */ protected $berichtcode = null; /** * @var Systeem $zender */ protected $zender = null; /** * @var Systeem $ontvanger */ protected $ontvanger = null; /** ...
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Socailmedia extends Model { protected $table = 'socail_links'; protected $fillable = ['facebook','twitter','instagram','youtube','whatsapp']; }
<?php namespace phpdotnet\phd; class Package_Mkk_ChunkedXHTML extends Package_Generic_ChunkedXHTML { protected $minorZf = null; protected $revisionZf = null; protected $revisionSvn = null; private $myelementmap = array(); private $replaceElementMap = array( 'funcparams' => 'code_fu...
@extends('layouts.master') @section('title') About Us @endsection @section('content') <!-- About Section--> <section class="page-section bg-primary text-white mb-0" id="about" style="margin-top: 20px"> <div class="container"> <!-- About Section Heading--> <h2 class="page-s...
<?php /** * * @copyright 2008 - https://www.clicshopping.org * @Brand : ClicShopping(Tm) at Inpi all right Reserved * @Licence GPL 2 & MIT * @licence MIT - Portion of osCommerce 2.4 * @Info : https://www.clicshopping.org/forum/trademark/ * */ namespace ClicShopping\Apps\Configuration\Langue...
<?php /** * Template part for displaying results in search pages * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package Botiga */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <?php the_title( sprintf( '<h2 class="entry-title"...
<?php # Utility class voor template functies, kan eventueel # door custom templates extended worden class SpotTemplateHelper { protected $_settings; protected $_daoFactory; protected $_currentSession; protected $_params; protected $_nzbhandler; protected $_spotSec; protected $_svcCacheNewSpotCount = null; ...
<!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- 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"><?= $title; ?></h1...
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Language extends Model { public static function siteLanguages() { return [ 'ru', 'en', ]; } /**Get languages array * * @return array */ public static function getArray(){ ...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateUserTweetRetweetsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('user_...