text
stringlengths
2
1.03M
<?php /** * Created by PhpStorm. * User: Artem * Date: 18.10.2016 * Time: 22:15 */ namespace backend\controllers; use app\models\Group; use yii\web\Controller; use app\models\User; class AjaxController extends Controller { public function actionFree_user() { $free_users = User::find()->where(['...
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <style type="text/css" rel="stylesheet" media="all"> /* Media Queries */ @media only screen and (max-width: 500px) { ...
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Categories extends Model { protected $guarded = []; public function posts() { return $this->hasMany('App\Posts','category_id', 'id'); } }
@extends('admin.layout.index') @section('title') Smarshop - Admin | Product Review - {{$product->name}} @endsection @section('content') <div id="page-wrapper"> <div class="container-fluid"> <div class="row"> <div class="col-lg-12"> <h1 class="page-header">{{$product->name}} ...
<?php class MascotaController extends Controller { /** * @var string the default layout for the views. Defaults to '//layouts/column2', meaning * using two-column layout. See 'protected/views/layouts/column2.php'. */ public $layout='//layouts/column2'; /** * @return array action filters */ public functi...
<?php /** * li₃: the most RAD framework for PHP (http://li3.me) * * Copyright 2010, Union of RAD. All rights reserved. This source * code is distributed under the terms of the BSD 3-Clause License. * The full license text can be found in the LICENSE.txt file. */ namespace lithium\data\collection; use lithium\da...
<?php $params = array_merge( require __DIR__ . '/../../common/config/params.php', require __DIR__ . '/../../common/config/params-local.php', require __DIR__ . '/params.php', require __DIR__ . '/params-local.php' ); return [ 'id' => 'app-backend', 'basePath' => dirname(__DIR__), 'controllerN...
<?php namespace app\modules\soporte\controllers; use Yii; use app\modules\soporte\models\InvNobreakEx; use app\modules\soporte\models\InvNobreakExSearch; use yii\web\Controller; use yii\web\NotFoundHttpException; use yii\filters\VerbFilter; use yii\filters\AccessControl; use app\modules\admin\models\CatMarca; use app...
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateJeephy20tt01sTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('jeephy20t...
@extends('layouts.app') @section('content') <div class="app-title"> <div> <h1><i class="fa fa-users"></i>Matoleo </h1> <p>welcome {{Auth::user()->fname}} &nbsp; {{Auth::user()->lname}}</p> </div> <ul class="app-breadcrumb breadcrumb"> <li class="breadcrumb-item"><i class="fa fa-home...
<?php namespace App\Http\Controllers\Buyer; use App\Http\Controllers\ApiController; use App\Models\Buyer; class BuyerController extends ApiController { /** * Display a listing of the resource. * * @return \Illuminate\Http\JsonResponse|\Illuminate\Http\Response */ public function index() ...
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Category extends Model { protected $fillable= ['code','name','description', 'image']; public function products(){ return $this->hasMany(Product::class); } }
<?php namespace App\Cashier\Omnipay\NetPay\Message; /** * NetPay API Delete Token Request */ class ApiTokenDeleteRequest extends AbstractRequest { public function getData() { $this->setApiMethod('gateway/token'); $this->validate('token'); $data = $this->getBaseData(); ...
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Kulkas; use App\Tipe; use App\Kondisi; use PDF; use Carbon\Carbon; class KulkasController extends Controller { public function index() { $kulkas=Kulkas::all(); $tipes=Tipe::all(); $kondisi=Kondisi::all(); return ...
<?php namespace Addons\Job\Controller; use Home\Controller\AddonsController; class BusinessNatureController extends AddonsController{ var $model; function _initialize() { $this->model = $this->getModel('BusinessNature'); parent::_initialize(); } //商家列表 public function lists(){ ...
<?php namespace Biplane\YandexDirect\Api\V5\Contract; /** * Auto-generated code. */ class AddSmartAdTargetsResponse { protected $AddResults = []; /** * Creates a new instance of AddSmartAdTargetsResponse. * * @return self */ public static function create() { return new ...
<?php return [ /* |-------------------------------------------------------------------------- | Allowed TLDs - Use with caution! |-------------------------------------------------------------------------- | | This is to prevent mis-usage during production if debug mode is | unintentionally...
<?php /** * Plugin Update Checker Library 3.0 * http://w-shadow.com/ * * Copyright 2016 Janis Elsts * Released under the MIT license. See license.txt for details. */ if ( !class_exists('PluginUpdateChecker_3_0', false) ): /** * A custom plugin update checker. * * @author Janis Elsts * @copyright 2016 * ...
<?php namespace Drupal\am_digital_authorization\Controller; use Drupal\Core\Controller\ControllerBase; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\JsonResponse; use GuzzleHttp\Client; use Drupal\Core\Access\AccessResult; use Symfony\Component\HttpFoundation\RedirectResponse; cl...
<?php use yii\helpers\Html; use yii\widgets\ActiveForm; /* @var $this yii\web\View */ /* @var $model app\models\DocenteSearch */ /* @var $form yii\widgets\ActiveForm */ ?> <div class="docente-search"> <?php $form = ActiveForm::begin([ 'action' => ['index'], 'method' => 'get', ]); ?> <?=...
<!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.0"> <title>JavaScript Basics</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.mi...
<?php namespace putyourlightson\sprig\components; use Craft; use Exception; use putyourlightson\sprig\base\Component; use putyourlightson\sprig\Sprig; use yii\web\ForbiddenHttpException; class SprigPlayground extends Component { public $variables = []; /** * @inheritdoc */ public function init(...
<?php namespace flundr\mvc; abstract class Model { public $columns = '*'; public $limit = 1000; protected $db; public function query($query) { return $this->db->query($query); } public function get($id, $columns = null) { $this->db->columns = $columns ?? $this->columns; return $this->db->read($id); } ...
<?php namespace App\Http\Controllers; use App\Http\Requests\ChangePasswordUserRequest; use App\Http\Requests\CreateUserRequest; use App\Http\Requests\EditUserRequest; use App\Http\Requests\LoginRequest; use App\Http\Services\UserService; use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; use Illuminate...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateResidentsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('residents', f...
<!doctype html> <html lang="en"> <head> <title>Title</title> <!-- 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/bootstr...
<?php use Illuminate\Database\Seeder; use Illuminate\Support\Facades\DB; class SoundTableSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { DB::table('sounds')->insert([ 'id'=>'1', 'soundName' =>'Nightcall',...
@extends('layoutmain') @section('content') <h1>Home</h1> <hr> @foreach($postingLites as $categoryname => $category) <div class="col-lg-4 col-md-6 container-fluid"> <div class="catcol"> <h2 class="categoryTitle centered"> <a class="catLink" href="{{URL::to('category/'.$categoryname)}}">{{ucfirst($categor...
<?php namespace Container2oRP5bu; 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 getSymfonyStyleService extends A...
<li class="{{ isActiveRoute('back.faq.*', 'mm-active') }}"> <a href="#" aria-expanded="false"><i class="fa fa-question"></i> <span class="nav-label">FAQ</span><span class="fa arrow"></span></a> <ul class="nav nav-second-level"> @include('admin.module.faq.questions::back.includes.package_navigation') ...
<!-- Content Header (Page header) --> <section class="content-header"> <div class="container-fluid"> <div class="row mb-2"> </div> </div><!-- /.container-fluid --> </section> <!-- Main content --> <section class="content"> <!-- general f...
<?php use yii\helpers\Html; use kartik\widgets\DetailView; /* @var $this yii\web\View */ /* @var $model app\models\trailers */ $this->title = $model->id; $this->params['breadcrumbs'][] = ['label' => 'Trailers', 'url' => ['index']]; $this->params['breadcrumbs'][] = $this->title; ?> <div class="trailers-view"> <h...
<?php session_start(); if (!isset($_SESSION["permiso"])){ header("Location: ../common/error_page.php") ; } if (!isset($_SESSION["lang"])) $_SESSION["lang"]="en"; include("../common/get_post.php"); include ("../config.php"); $lang=$_SESSION["lang"]; include("../common/header.php"); include("../lang/admin.php"); includ...
<?php namespace Combindma\Newsletter\Facades; use Illuminate\Support\Facades\Facade; class Newsletter extends Facade { protected static function getFacadeAccessor() { return 'newsletter'; } }
<?php return [ /* |-------------------------------------------------------------------------- | Default Database Connection Name |-------------------------------------------------------------------------- | | Here you may specify which of the database connections below you wish | to use as...
<?php namespace App\Admin; use Illuminate\Database\Eloquent\Model; class generate_salary extends Model { // }
<?php use Symfony\Component\DependencyInjection\Argument\RewindableGenerator; // This file has been auto-generated by the Symfony Dependency Injection Component for internal use. // Returns the private 'security.command.user_password_encoder' shared service. $this->services['security.command.user_password_encoder'] ...
<?php namespace App\Models; use CodeIgniter\Model; class MDatatables extends Model { function get_datatables(){ if($_POST['length']!=-1); $db = db_connect(); $builder = $db->table('tb_user'); $query = $builder->select('*') ->limit($_POST['length'], $_POST['start']) ...
<?php use Illuminate\Database\Seeder; use App\User; class UsersSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { User::truncate(); DB::table('users')->insert([ 'name' => 'Albi', 'role' => 'admin', ...
<?php require(APPPATH.'libraries/AT_REST_Controller.php'); /** * */ class Taller extends AT_REST_Controller { function __construct() { parent::__construct(); } public function index_post(){ $data = json_decode($this->input->input_stream('json')); $taller = (array) $data; $this->load->model...
<?php use yii\helpers\Html; /* @var $this yii\web\View */ /* @var $model app\models\Periode */ $this->title = 'Update Periode: ' . $model->nama; $this->params['breadcrumbs'][] = ['label' => 'Periode', 'url' => ['index']]; $this->params['breadcrumbs'][] = ['label' => $model->nama, 'url' => ['view', 'id' => $model->na...
<?php use Migrations\AbstractMigration; use Phinx\Db\Adapter\MysqlAdapter; class AlterSurveyQuestions extends AbstractMigration { /** * Change Method. * * More information on this method is available here: * http://docs.phinx.org/en/latest/migrations.html#the-change-method * @return void ...
<?php namespace Webkul\Attribute\Models; use Konekt\Concord\Proxies\ModelProxy; class AttributeProxy extends ModelProxy { }
<?php /** * Apocalypse Meow - Bootstrap * * Set up the environment. * * @package apocalypse-meow * @author Blobfolio, LLC <hello@blobfolio.com> */ /** * Do not execute this file directly. */ if (!defined('ABSPATH')) { exit; } // Bootstrap. // phpab -e "./node_modules/*" -o ./lib/autoload.php . require_on...
@extends('layouts.app') @section('title', 'UI Elements Basic Table') @section('bc-title', 'Basic') @section('bc-first', 'UI Elements') @section('bc-mid', 'Tables') @section('bc-last', 'Basic') @section('content') <div class="animated fadeIn"> <div class="row"> <div class="col-lg-6"> <div class...
<?php defined('BASEPATH') OR exit('No direct script access allowed'); //login $route['login'] = 'auth'; $route['signin'] = 'web/login'; $route['default_controller'] = 'web'; $route['404_override'] = ''; $route['translate_uri_dashes'] = FALSE;
<?php namespace App\Console\Commands; use Illuminate\Console\Command; use App\Models\Order; use App\Models\Setting; use Spipu\Html2Pdf\Html2Pdf; use Spipu\Html2Pdf\Exception\Html2PdfException; use Log; use Exception; use File; use Mail; use Carbon\Carbon; use App\Models\DocxGenerator; class SaveAndSendPdf extends Co...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateGlueTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('tb_glue', function...
@props(['comment']) <x-panel class="bg-gray-100 "> <article class="flex space-x-4"> <div class="flex-shrink-0"> <img src="https://i.pravatar.cc/60?u= {{ $comment->user_id }} width="60" height="60" class="rounded-xl"> </div> <div> <header class="mb-4"> ...
<?php /** * Invoice Ninja (https://invoiceninja.com). * * @link https://github.com/invoiceninja/invoiceninja source repository * * @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com) * * @license https://www.elastic.co/licensing/elastic-license */ namespace App\Http\Controllers\ClientP...
<?php namespace Laundrette\Test\Entity; use Laundrette\Entity\Machine; use Laundrette\Entity\MachineState; use Laundrette\Test\TestCase; class MachineStateTest extends TestCase { public function testCanCreateAndToString(): void { $machine = new Machine('Example', 'State'); $state = new Machi...
<div class="form my-auto"> <div class="form-signin"> <form action="" method="POST"> <div class="text-center"> <img class="mb-4" src="<?= base_url(); ?>assets/img/logo.svg" alt="" width="72" height="57"> <h1 class="h3 mb-3 fw-normal"><?= $title; ?> Form</h1> ...
<?php namespace OLX\FluentWebDriverClient\Tests\Browser\Page\Find\Assertion; use OLX\FluentWebDriverClient\Browser\Page\Find\Assertion\ElementShouldNotExistAssertion; use Facebook\WebDriver\Exception\NoSuchElementException; use Facebook\WebDriver\Remote\RemoteWebElement; class ElementShouldNotExistAssertionTest exten...
<?php // +----------------------------------------------------------------------+ // | PHP versions 4 and 5 | // +----------------------------------------------------------------------+ // | Copyright (c) 1998-2006 Manuel Lemos, Tomas V.V.Cox, | // | Stig....
@extends('layouts.app') @section('content') <div class="row"> <div class="col-lg-12 margin-tb"> <div class="pull-left"> <h2> Issue Details</h2> </div> <div class="pull-right"> <a class="btn btn-primary" href="{{ route('issues.index') }}"> B...
<?php namespace App\Providers; use App\Post; use Illuminate\Support\Facades\Gate; use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider; class AuthServiceProvider extends ServiceProvider { /** * The policy mappings for the application. * * @var array */ protec...
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateCommentsTable extends Migration { public function up() { Schema::create('comments', function (Blueprint $table) { $table->id(); $tabl...
<?php /** * The template for displaying home page. * * This is the template that displays all pages by default. * Please note that this is the WordPress construct of pages * and that other 'pages' on your WordPress site will use a * different template. * * @package Wild Safari Lite */ get_header(); ?> <div c...
<?php namespace App\Http\Controllers; use App\Models\HfFamilyContact; use Illuminate\Http\Request; class HfFamilyContactController extends Controller { /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { // } /**...
<?php /** * Base class for export UI. */ class ctools_export_ui { var $plugin; var $name; var $options = array(); /** * Fake constructor -- this is easier to deal with than the real * constructor because we are retaining PHP4 compatibility, which * would require all child classes to implement their...
@extends('layouts.user') @section('content') <div> <div> <img class="img-fluid single-page-image" src="{{asset('userFiles/assets/img/car-background-image.jpg')}}"></div> <div> <div class="container"> <div class="row"> <div class="col col-md...
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?> ERROR - 2018-07-08 04:18:15 --> Severity: Notice --> Trying to get property of non-object /home/shrivlqo/public_html/demo/application/views/report/generate.php 255 ERROR - 2018-07-08 04:18:15 --> Severity: Notice --> Trying to get property of non...
<?php /** * This file is automatically @generated by {@link BuildMetadataPHPFromXml}. * Please don't modify it directly. */ return array ( 'generalDesc' => array ( 'NationalNumberPattern' => ' 1\\d{1,3}| 3\\d{3}| 5\\d{2} ', 'PossibleNumberPattern' => '\\d{2,4}', ...
<?php /* PaginasBundle:Default:acercade.html.twig */ class __TwigTemplate_427cd4f229e8c537019d9c92214692fa57e7d253f3d7623832f33dbafc1847c0 extends Twig_Template { public function __construct(Twig_Environment $env) { parent::__construct($env); // line 1 $this->parent = $this->loadTempla...
<?php namespace FelixOnline\Admin\Actions; class user_ldap extends BaseAction { public function __construct($permissions) { parent::__construct($permissions); } public function run($records, $pullThrough = false) { if(count($records) == 0) { throw new \Exception('No users selected'); } $this->validate...
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Swatches\Test\Unit\Observer; /** * Observer test */ class AddSwatchAttributeTypeObserverTest extends \PHPUnit\Framework\TestCase { /** @var \Magento\Framework\Module\Manager|\PHPUnit_Framewor...
<?php /** * This file is part of the Carbon package. * * (c) Brian Nesbitt <brian@nesbot.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Authors: * - JD Isaacks * - Atef Ben Ali (atefBB) * - Mohamed ...
<?php namespace Alura\Banco\Modelo\Conta; require_once 'autoload.php'; class ContaCorrente extends Conta { protected function percentualTarifa(): float{ return 0.05; } public function transferir(float $valorATransferir, Conta $contaDestino){ if ($valorATransferir > $this->saldo){ ...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateEmailsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('emails', functio...
<?php declare(strict_types=1); namespace Star\BacklogVelocity\Agile\Domain\Model; final class AllObjects implements Filter { /** * @param QuerySubject $subject * * @return array The result */ public function applyFilter(QuerySubject $subject) { return $subject->getResults(); ...
@extends('layouts.app') @permission('blog-edit') @section('main-content') <div class="row"> <div class="col-lg-12 margin-tb"> {{--<div class="pull-left">--}} {{--<h2>Изменить</h2>--}} {{--</div>--}} <div class="pull-right"> <a class="btn btn-p...
<?php /** * Thumbnails configuration. * * @package Lafood */ add_action( 'after_setup_theme', 'lafood_register_image_sizes', 5 ); /** * Register image sizes. */ function lafood_register_image_sizes() { set_post_thumbnail_size( 418, 315, true ); // Registers a new image sizes. add_image_size( 'lafood-thumb-13...
<section class="section-gap-top section-gap-bottom"> <div class="container"> <div class="row justify-content-center"> <div class="col-6 align-center"> <h2 class="text-center mb-5">Upload Bukti Transfer</h2> <form action="<?php echo base_url('seminar/upload_umum') ?>" method="post" enctype="multipar...
<?php namespace App\Repositories; interface ITypesInputsRepository { public function all(); }
<?php namespace BpmPlatform\Engine\History; use BpmPlatform\Engine\Query\QueryInterface; interface HistoricProcessInstanceQueryInterface extends QueryInterface { /** Only select historic process instances with the given process instance. * {@link ProcessInstance) ids and {@link HistoricProcessInstance} ids ...
<?php namespace app\assets; use yii\web\AssetBundle; class MaterialAsset extends AssetBundle { public $lol = '@views'; public $sourcePath = '@vendor/ramosisw/'; public $css = [ 'yii2-material-dashboard/assets/css/material-dashboard.css' ]; public $js = [ 'yii2-material-dashboa...
<?php declare(strict_types=1); namespace Kreait\Firebase\RemoteConfig; final class UpdateType implements \JsonSerializable { public const UNSPECIFIED = 'REMOTE_CONFIG_UPDATE_TYPE_UNSPECIFIED'; public const INCREMENTAL_UPDATE = 'INCREMENTAL_UPDATE'; public const FORCED_UPDATE = 'FORCED_UPDATE'; public...
<?php namespace Blog\Factory; use Blog\Model\Post; use Interop\Container\ContainerInterface; use Blog\Model\PostRepository; use Zend\Db\Adapter\AdapterInterface; use Zend\Hydrator\ReflectionHydrator; use Zend\ServiceManager\Factory\FactoryInterface; class PostRepositoryFactory implements FactoryInterface { publ...
<?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 App\Domain\Entities; use App\Domain\Entities\Entities; use Illuminate\Auth\Authenticatable; use Illuminate\Auth\Passwords\CanResetPassword; use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract; use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract; use Illumina...
@extends('backend.app') @section('breadcrumb') <ol class="breadcrumb"> <li><a href="{{URL::to('home')}}"><i class="fa fa-home"></i> Home</a></li> <li><a href="{{url('all-users')}}">User</a></li> <li class="active">Create</li> </ol> @endsection @section('content') <style> ...
<?php namespace App; use Illuminate\Database\Eloquent\Model; class ImageProcess extends Model { // protected $fillable = [ 'user_id', 'algorithm', 'result', ]; }
@include('includes.head') <body> @include('includes.header') <div id="main"> <div> <img src={{ asset('images/fond.jpg') }} alt="nice" class="img-fluid" id="fond"> </div> <div id="transbox"></div> <div id="texte1"> <div> <h1> 7eme Congres de la fédération mondial...
<?php // Example file to demonstrate PiwikTracker.php // See http://piwik.org/docs/tracking-api/ require_once '../../libs/PiwikTracker/PiwikTracker.php'; PiwikTracker::$URL = 'http://localhost/trunk/'; $piwikTracker = new PiwikTracker($idSite = 1); // You can manually set the Visitor details (resolution, time, plugins...
<?php namespace Google\AdsApi\AdManager\v201908; /** * This file was generated from WSDL. DO NOT EDIT. */ class ProspectiveLineItem { /** * @var \Google\AdsApi\AdManager\v201908\LineItem $lineItem */ protected $lineItem = null; /** * @var \Google\AdsApi\AdManager\v201908\ProposalLineIt...
<!DOCTYPE html><html lang="en-US"><head><title>Passalyzer</title><meta name="viewport" content="width=device-width,initial-scale=1"><meta charset="utf-8"><meta name="author" content="Gavin Youker"><meta name="description" content="Password analysis web tool and browser extension."><meta name="copyright" content="2018">...
@extends('seller/layouts/default') @section('content') <div class="container-fluid mod-seller"> @include('seller/includes/headerSubMenu') @include('seller/includes/menuSettings') @include('seller/includes/menuNotifications') <div class="row"> <div class="col-lg-3"> @include('sel...
<?php namespace Dvsa\Olcs\Api\Entity\Si; use Doctrine\ORM\Mapping as ORM; /** * SiPenaltyErruRequested Entity * * @ORM\Entity * @ORM\Table(name="si_penalty_erru_requested", * indexes={ * @ORM\Index(name="ix_si_penalty_erru_requested_serious_infringement_id", columns={"serious_infringement_id"}), * ...
<div class="mdl-card__title"><strong>thefox</strong> posted on Feb 25, 2015 at 6:01:35 PM </div><div class="mdl-card__supporting-text"> <div class="FTQUOTE"> <i>Originally posted by: <b>Farid</b></i><br> <br> Writing #$00 to $2003 sets the OAM address (from $00 to $FF)<br> ...
<?php namespace Notifier\PolicyEngine\Then\Action; use Notifier\Data\MessageSeverity; require_once __DIR__ . '/../../../Data/MessageSeverity.php'; abstract class ActionBase { public function __construct() { } abstract public function notify($messageData, $notifySeverity = MessageSeverity::Medium); }
<?php include'application/views/area/head.php'; ?> <style> #page-header { min-height:65px; padding-bottom: 0px; } iframe{ width:700px; height:500px; } .texto{ } </style> <div class='area_interna'> <h2 class="ui stripe horizontal divider header"> <a id="sobre">Registrar ciência d...
<?php return array ( 'singular' => 'Usuario', 'plural' => 'Usuarios', 'fields' => array ( 'id' => 'ID', 'nome' => 'Nome', 'email' => 'Email', 'senha' => 'Senha', 'tipo' => 'Tipo', 'telefone_ddd' => 'DDD do Telefone', 'telefone_numero' => 'Número do Telefone ', 'empresa' => 'Empr...
<?php class User_Model extends CI_Model{ public function __construct(){ parent::__construct(); } ######################################## #fonction pour savoir si le login fourni #exise ou non #@Param : login -> login du nouvek utilisateur public function is_login_unique($login){ $this->db->select('logi...
<?php use common\modules\rbac\models\AuthItem; use common\modules\rbac\RbacAsset; use yii\helpers\ArrayHelper; use yii\helpers\Html; use yii\web\View; use yii\widgets\ActiveForm; use yii\widgets\DetailView; /* @var $this View */ /* @var $model AuthItem */ $this->title = '角色详情:'.$model->name; $this->params['breadcrum...
<?php namespace Database\Seeders; use Illuminate\Database\Seeder; class DatabaseSeeder extends Seeder { /** * Seed the application's database. * * @return void */ public function run() { $this->call([TypesTableSeeder::class,UsersTableSeeder::class, ItemSeeder::class]); } }
<?php namespace App\Http\Livewire; use App\Models\Classes; use Mediconesystems\LivewireDatatables\Http\Livewire\LivewireDatatable; use Mediconesystems\LivewireDatatables\Column; use Mediconesystems\LivewireDatatables\NumberColumn; use Mediconesystems\LivewireDatatables\BooleanColumn; class AdminClassesTable extends ...
@extends('magazyns.layout') @section('content') <div class="row"> <div class="col-lg-12 margin-tb"> <div class="pull-left"> <h2>Broń</h2> </div> <div class="pull-right"> <a class="btn btn-primary" href="{{ route('magazyns.index...
<?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 ...
<div class="page-header"> <h2><?= t('Board settings') ?></h2> </div> <form method="post" action="<?= $this->url->href('config', 'board') ?>" autocomplete="off"> <?= $this->form->csrf() ?> <?= $this->form->label(t('Task highlight period'), 'board_highlight_period') ?> <?= $this->form->number('board_hig...
<?php return [ 'theme_name' => '默认主题', 'author' => '关关', 'author_url' => 'https://www.sinkey.cc', 'version' => '1.0', 'description' => '这是KurBlog的默认主题' ];