text
stringlengths
2
1.03M
<?php /** * ------- U-232 Codename Trinity ----------* * ---------------------------------------------* * -------- @authors U-232 Team --------------* * ---------------------------------------------* * ----- @site https://u-232.duckdns.org/ ----* * ---------------------------------------------* * ----- ...
@extends('layout/backend') @section('content') <div class="panel panel-primary"> <div class="panel-heading">Family Info</div> <div class="panel-body"> {{ Form::open(array('class' => 'form-horizontal', 'role' => 'form')) }} <div class="row"> <div class="col-md-12">...
<?php namespace app\app_extend\controller\tuangou; use think\Controller; use think\Request; class index extends Controller { /** * 显示资源列表 * * @return \think\Response */ public function index() { // return $this->fetch(); } /** * 显示创建资源表单页. * * @...
@extends('layouts.app') @section('content') <div class="container"> <div class="row"> @include('admin.sidebar') <div class="col-md-9"> <div class="card"> <div class="card-header">formatprint {{ $formatprint->formatprintID }}</div> ...
<?php /********************************************************************************* ** The contents of this file are subject to the vtiger CRM Public License Version 1.0 * ("License"); You may not use this file except in compliance with the License * The Original Code is: vtiger CRM Open Source * The Initial D...
<?php use Illuminate\Database\Seeder; class BendaharaSeeder extends Seeder { /** * * Run the database seeds. * * @return void */ public function run() { \App\Pejabat::insert([ [ "idunitkerja"=>42, "nama"=> 'dr Anna Ujihandayani', ...
<?php namespace app\models; use Yii; /** * This is the model class for table "{{%bludo_ingredient}}". * * @property integer $bludo_id * @property integer $ingred_id * * @property Bludo $bludo * @property Ingredient $ingredient */ class BludoIngredient extends \yii\db\ActiveRecord { /** * @inheritdoc...
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>MessageBoard</title> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css"> ...
<?php namespace App; use Illuminate\Database\Eloquent\Model; class guestbook_anes_model extends Model { // protected $table='guestbook_tbl'; public $timestamps = true; protected $fillable= [ 'nama','no_telepon','alamat','kerabat','jmlh_orang' ]; protected $hidden=[ ]; }
@extends('painel.Layout.header') <?php $search = 2 ?> @section('title') Transferência de valor @endsection <!-- Titulo da pagina --> @section('header') <link rel="shortcut icon" href="{{ asset('/public/assets/imgs/casinha.png')}}" /> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="st...
<?php /** * Orders API for Metorik. */ class Metorik_Helper_API_Metorik extends WC_REST_Posts_Controller { public $namespace = 'wc/v1'; /** * Constructor. */ public function __construct() { add_action('rest_api_init', array($this, 'metorik_info_route')); add_action('rest_ap...
<div class="sidebar"> <nav class="sidebar-nav"> <ul class="nav"> <li class="nav-title"> @lang('menus.backend.sidebar.general') </li> <li class="nav-item"> <a class="nav-link {{ active_class(Active::checkUriPattern('admin...
<?php use App\Http\Controllers\BoxController; use App\Http\Controllers\ClientController; use App\Http\Controllers\CompanyController; use App\Http\Controllers\CreditController; use App\Http\Controllers\CreditProviderController; use App\Http\Controllers\EntryController; use App\Http\Controllers\ExpenseController; use Ap...
<?php /** * @see https://github.com/event-engine/php-inspectio-graph for the canonical source repository * @copyright https://github.com/event-engine/php-inspectio-graph/blob/master/COPYRIGHT.md * @license https://github.com/event-engine/php-inspectio-graph/blob/master/LICENSE.md MIT License */ declare(st...
<head> <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=""> @yield('style') <title>DOH - Cebu Treatment and Rehabilitat...
//Script to add parameters to JSON <?php //Reading $js = json_decode(file_get_contents("sites.json")); foreach($js->sites as $i){ //Adding parameter $i -> filename = $i -> domain; } //Encoding $js = json_encode($js, JSON_PRETTY_PRINT); //Writing to file file_put_contents("sites.json", $js); ?>
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Medication extends Model { // protected $fillable = [ 'name','dose','date','diagnosis','user_id' ]; public function user(){ return $this->belongsTo('App\User'); } }
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateTbConflanguage extends Migration { /** * Run the migrations. * * @return void */ public function up() { if (Schema::connection('waaup...
<?php use yii\helpers\Html; /* @var $this yii\web\View */ /* @var $model app\modules\admin\models\Team */ $this->title = 'Добавить команду'; $this->params['breadcrumbs'][] = ['label' => 'Teams', 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; ?> <div class="team-create container"> <h1><?= H...
<?php use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateBEBBPOlinesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('b_e_b_b_p_olines', function (Blueprint $table) { ...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateGioithieushopsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('gioithie...
<?php # Generated by the protocol buffer compiler. DO NOT EDIT! # source: proto/gtfs.proto namespace Gtfs\Transfer; use UnexpectedValueException; /** * Protobuf type <code>gtfs.Transfer.TransferType</code> */ class TransferType { /** * Generated from protobuf enum <code>RECOMMENDED = 0;</code> */ ...
<?php namespace app\modules\admin\controllers; use Yii; use app\models\Help; use app\models\HelpSearch; use yii\web\Controller; use yii\web\NotFoundHttpException; use yii\filters\VerbFilter; /** * HelpController implements the CRUD actions for Help model. */ class HelpController extends Controller { /** *...
<?php namespace App\Http\Controllers; use App\Models\User; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Facades\Hash; class AuthController extends Controller { //login page //user update information function update_userProfile(){ $userName=request('userName'); ...
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); class trcheckinlog_model extends MY_Model { public $tableName = "trcheckinlog"; public $pkey = "fin_id"; public function __construct(){ parent::__construct(); } public function getRules($mode="ADD",$id=0){ $rules = []; return $...
<?php session_start(); include "config.php"; $action = $_POST['action']; if ($action == 'logout'){ session_destroy(); }else if ($action == 'login'){ $username = $_POST['username']; $password = $_POST['password']; if ( $username == '' or $password == '' ){ die( 'parameter error' ); } $username = pg_escape_...
<?php if (isset($component)) { $__componentOriginal5518e5dbd0d2f249382fceb35002484a4efcccb8 = $component; } ?> <?php $component = $__env->getContainer()->make(ASK\Svg\Components\SvgComponent::class, []); ?> <?php $component->withName('icon-camera'); ?> <?php if ($component->shouldRender()): ?> <?php $__env->startCompon...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateLineaComprasTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('linea_comp...
<?php namespace App\Http\Controllers\admin; use Illuminate\Http\Request; use App\Http\Requests; use App\Http\Controllers\Controller; class HomeController extends Controller { // }
@extends('template') @section('main') <main id="site-content" role="main"> <div class="signup-page" ng-controller="store_signup"> <div class="banner-info"> <div class="container"> <div class="banner-txt"> <div class="col-md-5 col-lg-6 p-0"> <h1>The fast way to <span>get item to your customers</spa...
--TEST-- PDO Common: assert that bindParam does not modify parameter --EXTENSIONS-- pdo --SKIPIF-- <?php $dir = getenv('REDIR_TEST_DIR'); if (false == $dir) die('skip no driver'); require_once $dir . 'pdo_test.inc'; PDOTest::skip(); ?> --FILE-- <?php if (getenv('REDIR_TEST_DIR') === false) putenv('REDIR_TEST_DIR='.__DI...
@extends('layouts.main'); <h1><b>Hello World Laravel</b></h1>
<?php use Pyro\Module\Pages\Model\Page; /** * The public controller for the Pages module. * * @author PyroCMS Dev Team * @package PyroCMS\Core\Modules\Pages\Controllers */ class Pages extends Public_Controller { /** * Constructor method */ public function __construct() { parent::__construct(); // T...
<div class="col-sm-2"> <div class="form-group"> <label>Mostrar</label> <select id="show_record" class="form-control"> <option value="10">10 registros</option> <option value="25">25 registros</option> <option value="50">50 registros</option> <option value="100">100 registros</option> <option value="...
@extends('layout.default') @section('title', $__t('Login')) @section('viewJsName', 'login') @section('content') <div class="row"> <div class="col-lg-6 offset-lg-3 col-xs-12"> <h1 class="text-center">@yield('title')</h1> <form method="post" action="{{ $U('/login') }}" id="login-form" novalidate> <div class="...
<?php /** * Created by Skynix Team. * User: igor * Date: 03.11.17 * Time: 9:38 */ namespace viewModel; use app\models\Report; use app\models\ReportAction; use app\models\User; use app\models\ProjectDeveloper; use app\modules\api\components\Api\Processor; use Yii; /** * Class ReportApprove * * @package viewM...
<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Sales extends CI_Controller { public function __construct() { parent::__construct(); $this->load->model('M_Sales'); $this->load->library('ciqrcode'); $this->result = $this->M_User->SelectUser(); } ...
<?php // This file is part of Moodle - http://moodle.org/ // // Moodle 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 3 of the License, or // (at your option) any later version. // // Moodle ...
<!doctype html> <html lang="fr"> <head> <?php $title = "Documentation"; ?> <?php include($_SERVER['DOCUMENT_ROOT'].'/public/assets/dist/php/header.php'); ?> </head> <body> <div id="filterbanner"></div> <!--Filtre--> <div id="banner"></div> <!--Background--> <?php include($_SERVER['DOCUMENT_ROOT'].'/...
<?php declare(strict_types=1); namespace SteffenBrand\NonStaticPhpJwt\Test; use PHPUnit\Framework\TestCase; use Prophecy\Prophecy\MethodProphecy; use Prophecy\Prophecy\ObjectProphecy; use SteffenBrand\NonStaticPhpJwt\Jwt; class JwtProphecyTest extends TestCase { /** * @var Jwt */ private $jwt; ...
<?php use yii\helpers\Html; use yii\widgets\ActiveForm; /* @var $this yii\web\View */ /* @var $model app\models\UsersSearch */ /* @var $form yii\widgets\ActiveForm */ ?> <div class="users-search"> <?php $form = ActiveForm::begin([ 'action' => ['index'], 'method' => 'get', 'options' => [ ...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateEmpresasTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('empresas', fun...
<?php namespace Acme\Product\EventListener; use Acme\Product\Entity\Product; use Ekyna\Component\Commerce\Common\Event\SaleItemEvent; use Ekyna\Component\Commerce\Subject\SubjectHelperInterface; /** * Class SaleItemEventSubscriber * @package Acme\Product\EventListener * @author Etienne Dauvergne <contact@ekyna.c...
<?php namespace simuaagua\Http\Requests; use simuaagua\Http\Requests\Request; class ClienteCreateRequest extends Request { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } /** * Get t...
<?php defined('BASEPATH') OR exit('No direct script access allowed'); class C_Surat extends CI_Controller { function __construct() { parent::__construct(); $this->load->model('M_Surat'); $this->load->model('M_Catatan'); } public function index() { $data['success']=1; $data['active']='rubrik'; $data['...
<?php use Antares\Acl\RoleActionList; use Antares\Model\Role; use Antares\Acl\Action; $actions = [ new Action('two_factor_auth.configuration.*', 'Configuration'), new Action('two_factor_auth.user.reset', 'Reset User Settings'), ]; $permissions = new RoleActionList; $permissions->add(Role::admin()->name, $act...
@extends('layouts.app') @section('content') <div class="container"> <div class="row"> <div class="col-md-10 col-md-offset-1"> <div class="panel panel-default"> <div class="panel-heading">Laravel 5</div> </div> </div> </div> </div> @endsection
<?php foreach ($data['posts'] as $item) { $category_name = yoast_get_primary_term('category', $item); $item->primary_term = $category_name; $abstract = get_field('abstract', $item); $item->abstract = $abstract; } return $data;
<div class="container"> <div class="row"> <div class="col-xs-12"> <div class="panel panel-success"> <div class="panel-heading"> <h3 class="panel-title"><span class="fa fa-user-plus"></span> BiodataDicky Wahyudi</h3> </div> <body> <h1 align="cen...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateGenreBookTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('genre_book', ...
@extends('adminlte::page') @section('title', 'Produk') @section('content_header') <h1 class="m-0 text-dark">Produk</h1> @stop @section('content') <div class="row"> <div class="col-12"> <div class="card"> <div class="card-body"> <a href="{{route('produks.cr...
<?php class VMware_VCloud_API_OVF_cimShort { protected $namespace = array(); protected $namespacedef = null; protected $tagName = null; public static $defaultNS = 'http://schemas.dmtf.org/wbem/wscim/1/common'; /** * @param string $valueOf - [optional] */ public function __construct($valu...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; class CreateDomainsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('domains', function(Blueprint $table) { $table->bigInteger('id', true); $...
@extends ('Login.master') @section('SigUp') @if(Session::get('success')) <div class="alert alert-info ml-lg-auto" id="hide" style="width: 300px; margin-right: 350px;"> <button type="button" class="close" data-dismiss="alert">&times;</button> <strong>{{Session::get('success')}}!</strong> </div>...
@extends('admin.a_layout') @section('judulweb') Admin - Bank @endsection @section('content') <div> <h4 class="mt-3 pb-3 border-bottom text-center">DATA BANK</h4> @if (session('pesan')) <div class="mt-4 alert alert-success alert-dismissible fade show" role="alert"> {{ session('pesan') }} <button type...
<?php namespace Laravolt\Camunda\Http; use Illuminate\Support\Arr; use Laravolt\Camunda\Dto\TaskHistory; use Laravolt\Camunda\Exceptions\CamundaException; use Laravolt\Camunda\Exceptions\ObjectNotFoundException; class TaskHistoryClient extends CamundaClient { public static function find(string $id): TaskHistory ...
<?php class Model_bor extends CI_Model { ////////////// sampe sini ///////////// } ?>
<?php use Tattler\Common; use Tattler\Channels\Broadcast; use Tattler\Base\Channels\IRoom; use Tattler\Base\Objects\ITattlerMessage; use Grohman\Tattler\Lib\Tattler; use Illuminate\Support\Facades\Queue; class TattlerHelper { private $wrapper; private $data = []; /** * @return void */ ...
<?php namespace CustomerViews\Http\Controllers; use Illuminate\Foundation\Bus\DispatchesJobs; use Illuminate\Routing\Controller as BaseController; use Illuminate\Foundation\Validation\ValidatesRequests; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; class Controller extends BaseController { use Author...
<?php namespace App\Services\Permission; use App\Models\Role; use App\Models\RolePermission; class PermissionService { public function update($permissions = []) { foreach ($permissions as $role => $permissionArray) { $roleModel = Role::whereName($role)->first(); if($roleModel) { $roleModel->permissions(...
<?php declare(strict_types=1); /* * This file is part of JoliCode's Slack PHP API project. * * (c) JoliCode <coucou@jolicode.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace JoliCode\Slack\Api\Endpoint; class Admi...
@extends('layouts.admin') @section('content') <div class="card"> <div class="card-header"> {{ trans('global.create') }} {{ trans('cruds.slider.title_singular') }} </div> <div class="card-body"> <form method="POST" action="{{ route("admin.sliders.store") }}" enctype="multipart/form-data"> ...
<?php /* @Twig/images/icon-plus-square-o.svg */ class __TwigTemplate_859278a26ebf81edb421181506ae11aac16b7023c11943a1ca3130a1003fa9be extends Twig_Template { private $source; public function __construct(Twig_Environment $env) { parent::__construct($env); $this->source = $this->getSourceCo...
<?php /* SonataAdminBundle:CRUD:preview.html.twig */ class __TwigTemplate_27741c3f695316625a6fe31d3fb7c81e0ecbb29edbf721b0e53258d94a5ab6cb extends Twig_Template { public function __construct(Twig_Environment $env) { parent::__construct($env); $this->parent = $this->env->loadTemplate("SonataAdm...
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateAlertaProyectosTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('alerta_...
<?php use App\Http\Controllers\ChatController; use Illuminate\Foundation\Application; use Illuminate\Support\Facades\Route; use Inertia\Inertia; /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | H...
<?php namespace App\View\Components\Order; use Illuminate\View\Component; class Form extends Component { public $customer; public $route; public $method; /** * Create a new component instance. * * @return void */ public function __construct($customer=null) { $this-...
<div class="container" id="create_station_profile"> <br> <?php if($this->session->flashdata('message')) { ?> <!-- Display Message --> <div class="alert-message error"> <p><?php echo $this->session->flashdata('message'); ?></p> </div> <?php } ?> <div class="card"> <div class="card-header"> <?php echo...
<?php namespace Gedmo\Mapping\Annotation; use Doctrine\Common\Annotations\Annotation; /** * TreeRight annotation for Tree behavioral extension * * @Annotation * @Target("PROPERTY") * * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com> * @license MIT License (http://www.opensource.org/licenses/mi...
<?php namespace Tests\Unit; use App\Episodio; use App\Temporada; use Tests\TestCase; use Illuminate\Foundation\Testing\WithFaker; use Illuminate\Foundation\Testing\RefreshDatabase; class TemporadaTest extends TestCase { private $temporada; protected function setUp(): void { parent::setUp(); ...
<?php /** * Tests */ class DataViewTest extends TestCase { public function testViewClassMethods() { $uniqid = uniqid( true ); $view = new Biscuit\Data\View(); $view->setTemplate( BASE."/tests/assets/views/testview.php" ); $view->setKey( "test", $uniqid ); $html = $vi...
<?php /** * IssuerAndSerialNumber * * @author Nurlan Mukhanov <nurike@gmail.com> * @copyright 2020 Nurlan Mukhanov * @license https://en.wikipedia.org/wiki/MIT_License MIT License * @link https://github.com/Adapik/CMS */ namespace Adapik\CMS; use Adapik\CMS\Exception\FormatException; use Adapik\CMS\I...
<?php namespace Drupal\social_tagging; use Drupal\Core\Cache\CacheableMetadata; use Drupal\Core\Config\ConfigFactoryOverrideInterface; use Drupal\Core\Config\StorageInterface; /** * Configuration override. */ class SocialTaggingOverrides implements ConfigFactoryOverrideInterface { /** * The tagging helper se...
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Slider; use Image; use DB; class SliderController extends Controller { public function index(){ return view('admin-end.slider.add-slider'); } protected function sliderInfoValidate($request){ $this->validate($request, [ ...
<?php namespace App\Http\Middleware; use Closure; class RoleMiddleware { /** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @return mixed */ public function handle($request, Closure $next) { if($request->user...
<?php namespace App\Models; use Tymon\JWTAuth\Contracts\JWTSubject; use Illuminate\Contracts\Auth\MustVerifyEmail; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; use Laravel\Sanctum\HasApiTokens; class User exten...
@extends('layout.mainlayout') @section('title', 'Project') @section('pagetitle', 'My Project') @section('main_content') <div class="d-md-flex justify-content-md-end"> <a href="{{ route('projects.create') }}"> <button class="btn btn-success my-2" type="button"> <svg xmlns="htt...
<?php /** * Created by PhpStorm. * User: MarekHvolka * Date: 29.06.16 * Time: 14:55 */ use backend\models\MultimediaCategory; use backend\models\MultimediaItem; use kartik\file\FileInput; use yii\helpers\ArrayHelper; use yii\helpers\Html; use yii\helpers\Url; $model = new MultimediaItem(); /* @var $modal boolea...
<?php /* * This file is part of the MidnightLukePhpUnitsOfMeasureBundle package. * * (c) Luke Bainbridge <http://www.lukebainbridge.ca/> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace MidnightLuke\PhpUnitsOfMeasureBund...
<?php if (!defined('BASEPATH')) { exit('No direct script access allowed'); } $_doctypes = array( 'xhtml11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">', 'xhtml1-strict' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/...
<div class="tpl-left-nav tpl-left-nav-hover"> <div class="tpl-left-nav-title"><i class="am-icon-cog am-icon-sm"></i>&nbsp;&nbsp;操作列表</div> <div class="tpl-left-nav-list"> @yield('slider') </div> </div>
<?PHP /*- * Copyright (c) 2017 Etienne Bagnoud <etienne@artisan-numerique.ch> * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above co...
<?php namespace app\admin\controller; use \think\Db; class Zxdc extends Common { // 在线交流菜单栏【已经加入权限】 public function left_zxdc() { return $this->fetch(); } /** 在线论坛 */ //在线论坛【已经加入权限】 public function zxlt() { $list=Db::table('zaixianluntan'...
<?php use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\Container; use Symfony\Component\DependencyInjection\Exception\InactiveScopeException; use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException; use Symfony\Component\DependencyInjection\Exc...
<?php /** * Handles running payment gateway suggestion specs */ namespace Automattic\WooCommerce\Admin\Features\PaymentGatewaySuggestions; defined( 'ABSPATH' ) || exit; use Automattic\WooCommerce\Admin\RemoteInboxNotifications\SpecRunner; use Automattic\WooCommerce\Admin\Features\PaymentGatewaySuggestions\DefaultP...
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Mprueba extends CI_Model { public function __construct() { parent::__construct(); $this->load->database(); } public function nuevosdatos($data) { $objeto = array( 'Latitude'=>$data["latitude"], 'Longuitud'=>$data["longu...
<?php /** * IntoDeep * * NOTICE OF LICENSE * * Copyright (C) IntoDeep Srl - All Rights Reserved * Unauthorized copying of this file, via any medium is strictly prohibited * Proprietary and confidential * Written by Serman Nerjaku <serman84@gmail.com> * * @category Deep * @copyright Copyright (c) 2...
@extends('layout.master') @section('page-header') <!-- breadcrumb --> <div class="breadcrumb-header justify-content-between"> <div class="my-auto"> <div class="d-flex"> <h4 class="content-title mb-0 my-auto"><a href="{{ adminUrl('invoices') }}">الفواتير</a></h4><span class="...
<?php namespace App\Controllers; use App\Controllers\BaseController; use App\Models\CekinModel; use Config\Services; use \Hermawan\DataTables\DataTable; class CekinController extends BaseController { public function index() { $bagian = $this->db->query('SELECT * FROM bagian'); $bagians = $bagian->getResultArr...
<?php declare(strict_types=1); namespace Denbad\RelativeDate\Tests\Middleware; interface NextCallable { public function __invoke(string $result, string $strategy): string; }
<html> <head><?php include($_SERVER["DOCUMENT_ROOT"] . "/header.php"); ?> <title>SuperSD&reg; </title> </head> <body bgcolor="FF0000"> <A HREF="../index.php"><img src="../Images/logo.png" height="120" width="160"></A><A HREF="../technology.php"><img src="../Images/technology.png" height="120" width="160"></A><A HREF="....
<?php namespace Worldpay\Payments\Model\Methods; class Yandex extends WorldpayPayments { protected $_code = 'worldpay_payments_yandex'; protected $_canUseInternal = false; protected $_canAuthorize = false; protected $_canCapture = true; protected $_canRefund = true; protected $_formBlockType = 'worldpay/p...
<?php use yii\helpers\Html; /* @var $this yii\web\View */ /* @var $model app\modules\doctors\models\Doctors */ $this->title = 'Create Doctor Slots'; //$this->params['breadcrumbs'][] = ['label' => 'Doctors', 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; ?> <div class="doctors-create"> ...
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateConnectTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('tasks', functio...
<script src="{{asset('js/app.js?nocahe=v7')}}"></script> <!-- Metis Menu Plugin JavaScript --> <!-- <script src="{{asset('vendor/metisMenu/metisMenu.min.js')}}"></script>--> <!-- Morris Charts JavaScript --> <!-- <script src="{{asset('vendor/raphael/raphael.min.js')}}"></script> <script src="{{...
<?php namespace App\Http\Controllers\Admin; use App\Http\Controllers\Controller; use App\Models\{ Comment, User, }; // use App\Models\Comment; // use App\Models\User; use Illuminate\Http\Request; class CommentController extends Controller { protected $comment; protected $user; public function __...
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Models\Sector; use App\Models\Category; class FrontEndController extends Controller { /** * Create a new controller instance. * * @return void */ public function __construct() { } /** * Sh...
<?php global $_MODULE; $_MODULE = array(); $_MODULE['<{blockfacebook}cars>blockfacebook_43d541d80b37ddb75cde3906b1ded452'] = 'Facebook Vind ik leuk Blok'; $_MODULE['<{blockfacebook}cars>blockfacebook_e2887a32ddafab9926516d8cb29aab76'] = 'Toont een blok om in te schrijven op uw Facebook-pagina.'; $_MODULE['<{blockfaceb...
<?php return [ 'filepond_instructions' => '<span class="filepond--label-action">بارگذاری فایل</span> یار بکشید و رها کنید', 'file_upload_label' => 'انتخاب فایل', 'file_upload_processing' => 'درحال پردازش...', 'custom_select_filter_placeholder' => 'جستجو...', 'custom_select_clear_button' => 'خالی کر...
<?php use HireMe\Entities\Category; class CandidatesController extends BaseController { protected $categoryRepo; public function __construct(CategoryRepo $categoryRepo) { $this->categoryRepo = $categoryRepo; } public function category($slug,$id) { $category = $this->categoryR...