text
stringlengths
2
1.03M
<?php return [ 'title' => '9. Kapcsolattartók elérhetőségei', 'data-controller' => [ 'title'=>'-Adatkezelő', 'text' => '<p>Amennyiben az (EU) 2018/1725 rendelet szerinti jogait gyakorolni kívánja, vagy megosztaná észrevételeit, kérdéseit, illetve aggályait, vagy személyes adata...
@extends('main') @section('title','|تعديل') @section('stylesheets') {!! Html::style('css/parsley.css') !!} {!! Html::style('css/select2.min.css') !!} <script src="https://cloud.tinymce.com/stable/tinymce.min.js"></script> <script> tinymce.init({ selector:'textarea', plugins: 'link code', ...
<?php namespace App\Http\Livewire\Test; use App\Models\Category; use App\Models\Post; use Livewire\Component; class Create extends Component { public $title = ''; public $description = ''; public $category_id = ''; public $parent = ''; public $categories; public $children = []; public $fi...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class Slide extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('slide', function (Blueprint ...
<?php /** * ProductsAttributesGroupsIndexes * * This class has been auto-generated by the Doctrine ORM Framework * * @package ShineISP * * @author Shine Software <info@shineisp.com> * @version SVN: $Id: Builder.php 7490 2010-03-29 19:53:27Z jwage $ */ class ProductsAttributesGroupsIndexes extends...
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15" /> </svg>
<?php /* * This file is part of Totara Learn * * Copyright (C) 2019 onwards Totara Learning Solutions LTD * * 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 3 of the License...
<?php declare(strict_types = 1); namespace Tests\Cases; use FastyBird\DevicesModule\Entities as DevicesModuleEntities; use FastyBird\DevicesModule\Models as DevicesModuleModels; use FastyBird\DevicesNode\Handlers; use FastyBird\MqttPlugin\Entities as MqttPluginEntities; use Mockery; use Nette\Utils; use Tester\Assert...
<?php namespace App\Http\Controllers; use App\Models\Book; use App\Models\Category; use Illuminate\Http\Request; use Auth; class UploadController extends Controller { public function index(){ //$categories = Category::all(); return view('upload'); } public function upload(Request $request...
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Http\Requests; use Patagona\Pricemonitor\Core\Infrastructure\ServiceRegister; use Patagona\Pricemonitor\Core\Sync\TransactionHistory\TransactionHistory; use Patagona\Pricemonitor\Core\Sync\TransactionHistory\TransactionHistoryMasterFilter; use...
<?php namespace MadWizard\WebAuthn\Crypto; use MadWizard\WebAuthn\Exception\UnsupportedException; use MadWizard\WebAuthn\Exception\WebAuthnException; class OpenSslVerifier { private const OPENSSL_ALGO_MAP = [ CoseAlgorithm::ES256 => OPENSSL_ALGO_SHA256, CoseAlgorithm::ES384 => OPENSSL_ALGO_SHA384...
<?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 declare(strict_types=1); /** * Micro * * @copyright Copryright (c) 2015-2018 gyselroth GmbH (https://gyselroth.com) * @license MIT https://opensource.org/licenses/MIT */ namespace Micro\Auth; use Closure; use Psr\Log\LoggerInterface as Logger; class AttributeMap implements AttributeMapInterface { ...
<?php // +---------------------------------------------------------------------- // | 海豚PHP框架 [ DolphinPHP ] // +---------------------------------------------------------------------- // | 版权所有 2016~2019 广东卓锐软件有限公司 [ http://www.zrthink.com ] // +---------------------------------------------------------------------- // ...
<?php namespace App; use Illuminate\Support\Str; use JavaScript; class TextAnalyzer { /** * @param $link * @return array|null */ public static function curlInit($link) { $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $link); curl_setopt($curl, CURLOPT_RETURNTR...
<?php namespace Phine\Bundles\Core\Modules\Backend; use Phine\Bundles\Core\Logic\Module\BackendModule; use Phine\Bundles\Core\Logic\Util\ClassFinder; use Phine\Bundles\Core\Logic\Util\PathUtil; use Phine\Bundles\Core\Logic\Module\FrontendModule; use Phine\Framework\System\IO\Folder; use Phine\Framework\System\IO\Path; ...
<?php /** * Created by PhpStorm. * User: yidashi * Date: 16/8/6 * Time: 下午3:41 */ namespace common\modules; use Yii; use yii\base\BootstrapInterface; use yii\base\Event; use yii\web\User; class Module extends \yii\base\Module { public function init() { parent::init(); $class = new \Refl...
<?php namespace App\Http\Controllers\Admin; use App\Http\Controllers\Controller; use Illuminate\Http\Request; use App\Models\categories; use App\Models\Code; use App\Models\Order; use App\Models\User; use App\Models\wallet; use App\Models\WalletLogs; use Illuminate\Support\Facades\DB; class AdminController extends Co...
@extends('frontend.layout.template') @section('content') <div class="w3-container" style="margin-top: 52px"> <div class="w3-row" > <div class="w3-row"> @foreach($data as $item) <span style="color: #616161;margin-left: 10px"> <span style="float: lef...
<?php session_start(); include("../credential.php"); $date = date_create(); save_log($_SESSION['username'],getUserIP(),$_SERVER['REQUEST_URI'],urlencode(http_build_query($_POST, '', '&amp;')),date_format($date, 'Y-m-d H:i:s')); $connection = mysqli_connect($servername, $username, $password, $dbname); ...
<?php namespace App\Exceptions; use Exception; use Illuminate\Auth\AuthenticationException; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; use Illuminate\Support\Arr; class Handler extends ExceptionHandler { /** * A list of the exception types that are not reported. * * @var arr...
<?php /** @var \Illuminate\Database\Eloquent\Factory $factory */ use App\Comic; use Faker\Generator as Faker; $factory->define(Comic::class, function (Faker $faker) { return [ // ]; });
<?php namespace App\Turbine\Menus\Casts; use App\Turbine\Menus\Concerns\GetsCleanUri; use Illuminate\Contracts\Database\Eloquent\CastsAttributes; class ExternalLinkUriCast implements CastsAttributes { use GetsCleanUri; /** * Cast the given value. * * @param \Illuminate\Database\Eloquent\Mode...
<?php /* * This file is part of the PHPExifTool package. * * (c) Alchemy <support@alchemy.fr> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PHPExiftool\Driver\Tag\ExifIFD; use JMS\Serializer\Annotation\ExclusionPolic...
@extends('Base.base') @section('tituloPagnia') DASHBOARD SECRETARIA @endsection @section('titulo') DASHBOARD SECRETARIA @endsection @section('descripcion') @endsection @section('cuerpo') <div class="card"> <div class="card-header"> <div class="row"> <div class="col-m...
<?php /* WebProfilerBundle:Profiler:toolbar_js.html.twig */ class __TwigTemplate_62329dd28f192eb8694533e57be22bba6062d808626876b0575ca11ca390273b extends Twig_Template { public function __construct(Twig_Environment $env) { parent::__construct($env); $this->parent = false; $this->block...
@extends('layouts.AdminTemplate') @section('title') Entité @endsection @section('content') <div class="row"> <div class="card"> <h5 class="card-header">Ajouter un nouveau Etage</h5> <div class="card-body"> <h5 class="card-title"></h5> <div...
@extends('site.app') @section('title-meta') <title>Galaxy </title> @endsection @section('content') @include('site.login.login-partitial.quiz.header') <br> @include('site.login.login-partitial.quiz.loggedin_quiz') ) @endsection @section('scripts') @endsection <scrip...
<footer class="footer inner-padding-footer"> <div class="container-fluid"> <div class="row"> <div class="col-md-6"> <p class="text-white">Lorem ipsum dolor sit amet</p> <h2 class="f-45 text-white">Lets Protect you<br> and your<br> businesses</h...
<html> <head> <title>Form Input Transaksi Pembelian Sepatu</title> </head> <body> <?php echo validation_errors();?> <center> <form action="<?= base_url('transaksi/cetak'); ?>" method="post"> <table> <tr> <th colspa...
<?php namespace App\Exports; use App\Models\Data; use Maatwebsite\Excel\Concerns\Exportable; use Maatwebsite\Excel\Concerns\FromCollection; class DataExport implements FromCollection { public function collection() { return Data::select('name', 'dni', 'number_table', 'updated_at')->where('number_tabl...
<?php /** * ALIPAY API: alipay.open.mini.experience.cancel request * * @author auto create * @since 1.0, 2017-12-20 10:58:16 */ class AlipayOpenMiniExperienceCancelRequest { /** * 小程序取消体验版 **/ private $bizContent; private $apiParas = array(); private $terminalType; private $terminalInfo; private $prodC...
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class NewsCategory extends Model { use SoftDeletes; /** * The attributes that should be mutated to dates. * * @var array */ protected $dates = ['deleted_at']; /...
@extends('./admin.admin-master') @section('admin_content') <div class="sl-mainpanel"> <nav class="breadcrumb sl-breadcrumb"> <a class="breadcrumb-item" href="index.html">Admin</a> <a class="breadcrumb-item" href="{{ url('admin/brand') }}">Brand</a> <span class="breadcrumb-item active">Edit</span> ...
<?php namespace Povs\ListerBundle\Service; use Povs\ListerBundle\Mapper\FilterMapper; use Povs\ListerBundle\Mapper\ListField; use Povs\ListerBundle\Mapper\ListMapper; use Symfony\Component\Form\FormInterface; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\RequestStack; /** * @aut...
<!DOCTYPE html> <html lang="en" > <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Community Auth</title> <style> body{background:#fee;} #menu{float:left;width:100%;background:pink;} @med...
<?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; use \ccxt\ArgumentsRequired; class latoken extends Exchange { public func...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateBooksTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('books', function ...
<?php namespace App\Http\Resources; use Illuminate\Http\Resources\Json\JsonResource; class ReportResource extends JsonResource { /** * Transform the resource into an array. * * @param \Illuminate\Http\Request $request * @return array */ public function toArray($request) { ...
<?php /** * Admin Options Page * Settings > Widget Options * * @copyright Copyright (c) 2017, Jeffrey Carandang * @since 4.1 */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) exit; /** * Creates the admin submenu pages under the Settings menu and assigns their * * @since 1.0 * @return void...
<?php if (session()->get('errors')): ?> <div class="alert alert-error flex flex-col items-start mb-4 text-sm"> <p class="mb-2">Terjadi kesalahan: </p> <ul class="flex flex-col list-disc"> <?php foreach (session()->get('errors') as $error): ?> <li class="ml-4 mt-0"><?= $er...
<?php declare(strict_types=1); /** * portable-game-notation (https://github.com/chesszebra/portable-game-notation) * * @link https://github.com/chesszebra/portable-game-notation for the canonical source repository * @copyright Copyright (c) 2017 Chess Zebra (https://chesszebra.com) * @license https://github.com/ch...
<?php namespace Tests\Integration; use Illuminate\Foundation\Testing\RefreshDatabase; use Styde\Enlighten\Models\Example; use Styde\Enlighten\Models\ExampleGroup; use Styde\Enlighten\Models\Run; use Tests\Integration\App\Models\User; class ListUsersTest extends TestCase { use RefreshDatabase; /** * @te...
<h1>Manage Sliders</h1> <?php if (isset($flash)) { echo $flash; } $create_sliders_url = base_url() . "sliders/create"; ?> <a href="<?php echo $create_sliders_url; ?>"> <button type="button" class="btn btn-primary" style="margin-top: 30px; margin-bottom: 30px;">Create new slider</button> </a> <?php if ($num_rows ...
<?php declare(strict_types=1); /* * This file is part of the Sonata Project package. * * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Sonata\Component\Event; use...
<?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\Bridge\Twig\Tests\Extension; use Symfony\Bridge\Twig\Extension\...
<?php /* ------------------------------------------------------ * INCLUDE CLASS DEFINITION PRIOR TO INITIALIZING * ------------------------------------------------------ */ require_once 'classes/MySQLHandler.php'; $lErrorMessage=""; try { MySQLHandler::databaseAvailable(); } catch (Exception $e) { $lError...
@extends('layouts.admin') @section('title', '登録済みの料理レシピ一覧') @section('content') <div class="container"> <div class="row"> <h2>料理レシピ一覧</h2> </div> <div class="row"> <div class="col-md-4"> <a href="{{ action('Admin\CookingController@add') }}" role="butt...
<?php namespace Anax\Users; /** * Model for Users. * */ class User extends \Anax\MVC\CDatabaseModel { use \Anax\DI\TInjectable; public function userLogin($cred){ $user = $this->confirmPassword($cred['username'], $cred['password']); if($user != null){ $this->loginUserInSession(...
<?php namespace NwManager\Http\Controllers; use NwManager\Repositories\Contracts\ClientRepository; use NwManager\Services\ClientService; /** * Class ClientController * * @package NwManager\Http\Controllers; */ class ClientController extends Controller { use Traits\RestFullTrait; /** * Construct Cli...
<!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>Document</title> <style> .h1contactmail{border: 1px solid black; } </style> </he...
<?php namespace TomKriek\CopernicaAPI\Exceptions; use Exception; use Throwable; class BadCopernicaRequest extends Exception { public function __construct($message = '', $code = 0, Throwable $previous = null) { parent::__construct($message, $code, $previous); } }
<?php $version = '2.2'; // the $ projectnumber variable is automatically replaced by doxygen with the version number $pagetitle = 'sf::Clock Class Reference'; // the $ title variable is automatically replaced by doxygen with the page title include('../header.php'); ?> <!-- Generated by Doxygen 1.8.8 --> <...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateAdminsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('admins', functio...
<?php declare(strict_types=1); namespace Symplify\EasyCodingStandard\DependencyInjection\CompilerPass; use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symplify\EasyCodingStandard\Configuration\Exception\ConflictingCheckersLoaded...
<?php namespace TypiCMS\Modules\Projects\Controllers; use App; use Str; use View; use TypiCMS; use TypiCMS\Modules\Projects\Repositories\ProjectInterface; use TypiCMS\Controllers\BasePublicController; class PublicController extends BasePublicController { public function __construct(ProjectInterface $project) ...
<!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="author" content=""> <title>Ink Horde - Home</title> <...
{!! Form::open(array('url'=>'core/forms/reorder/'.$row->formID, 'id'=>'formconfiguration')) !!} <button type="button" onclick="SximoModal('{{ url("core/forms/input/".$row->formID) }}','New Input')" class="btn btn-success btn-sm" ><i class="fa fa-plus"></i> New Input </button> <button class="btn btn-primary btn-sm" ty...
<?php namespace app\home\controller; use think\Controller; use think\Db; use app\home\model\User; class Orders extends Controller { public function index(){ if(session("homeuser")==null){ return $this->redirect("/home/index/index"); exit(); } //实例化自定义方法 查出所有类别 和 友情链...
<div class="home-contacto container-fluid"> <div class="row"> <h3>Contactanos</h3> <div class="col-xs-12 col-sm-12 col-md-10 col-md-offset-1"> <form class="contact-form" action="/" method="post"> {{ csrf_field() }} <div class="col-xs-12 col-sm-6"> <div class="form-group"> ...
<?php namespace app\index\controller; use app\service\helper\Format; use app\service\kefureply\initreply; use think\Db; use think\Exception; use think\facade\Cache; use think\facade\Request; use think\Validate; use Wxcomponent\WechatApi; class Wechat extends Common { public function __construct() { ...
<?php Route::get('/', ['as' => 'home', 'uses' => 'HomeController@home']); // Routes for services Route::get('about', ['as' => 'about', 'uses' => 'HomeController@about']); // Routes for contact Route::resource('messages', 'MessagesController'); // login form Route::get('login', 'Auth\LoginController@showLoginForm...
<?php /* * This file is part of the Sylius package. * * (c) Paweł Jędrzejewski * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace spec\Sylius\Component\Core\Promotion\Checker; use PhpSpec\ObjectBehavior; use Sylius\Compon...
<div class="wallet-source text-center"> <h5> <small><i class="fa fa-sign-out"></i> PROCESS BY:</small> <br> <img src="{{ asset("CRM/Capital7-1.0.0/img/user2-160x160.jpg") }}" class="img-circle" alt="User Image"> <br> <a href="mailto:{{ $sender }}"> <i class="fa f...
<?php /** * Created by PhpStorm. * User: heitor * Date: 17/09/15 * Time: 15:38 */ namespace CodeProject\Services; use CodeProject\Entities\ProjectNote; use CodeProject\Exceptions\ServiceException; use CodeProject\Repositories\ProjectNoteRepository; use CodeProject\Transformers\ProjectNoteTransformer; use CodePr...
<?php namespace app\controller; use app\BaseController; use think\facade\View; use think\facade\Session; class Logout extends BaseController { public function index() { if (Session::has('user_data')) { Session::delete('user_data'); return View::fetch('login/login'); } else { return View...
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Category extends Model { use HasFactory; protected $guarded = []; protected $table = 'categories'; }
<?php use Illuminate\Support\Facades\Route; /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the Route...
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Models\Cliente; class ClientesController extends Controller { /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { // $clientes=Cliente::all...
<?php namespace App\Providers; use App\Events\Contributed; use App\Listeners\UpdateContributionNotification; use Illuminate\Auth\Events\Registered; use Illuminate\Auth\Listeners\SendEmailVerificationNotification; use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider; use Illuminate\Suppo...
<?php /** * UMC * * NOTICE OF LICENSE * * This source file is subject to the MIT License * 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/mit-license.php * * @copyright Marius Strajeru * @license ht...
<?php /** * @package AcyMailing for Joomla! * @version 4.9.4 * @author acyba.com * @copyright (C) 2009-2015 ACYBA S.A.R.L. All rights reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html */ defined('_JEXEC') or die('Restricted access'); ?><?php class acypictHelper{ var $error; var $maxHeigh...
<?php $dll = new SplDoublyLinkedList(); var_dump($dll->add()); ?>
<?php /* * This file is part of PHPExifTool. * * (c) 2012 Romain Neutron <imprec@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PHPExiftool\Driver\Tag\PDF; use JMS\Serializer\Annotation\ExclusionPolicy; use...
<?php global $houzez_opt_name, $allowed_html_array, $Option_Countries; Redux::setSection( $houzez_opt_name, array( 'title' => esc_html__( 'Map Settings', 'houzez' ), 'id' => 'houzez-googlemap-settings', 'desc' => '', 'icon' => 'el-icon-globe el-icon-small', 'fields' => array( array(...
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; class Tipo_Documento_Controller extends Controller { public function index() { return view('intranet/mantenimientos/tipo_documento'); } public function create() { // } public function store(Request $request...
<?php namespace Drupal\metatag_app_links\Tests; use Drupal\metatag\Tests\MetatagTagsTestBase; /** * Tests that each of the App Links tags work correctly. * * @group metatag */ class MetatagAppLinksTagsTest extends MetatagTagsTestBase { /** * {@inheritdoc} */ private $tags = [ 'al_android_app_name'...
<?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\Bundle\FrameworkBundle\Translation; use Symfony\Component\Trans...
<?php $lang["items_add_minus"] = "Dodavanje/skidanje s inventure"; $lang["items_allow_alt_desciption"] = "Dozvoli Alt opis"; $lang["items_allow_alt_description"] = "Dozvoli Alt opis"; $lang["items_amount_entry"] = ""; $lang["items_bulk_edit"] = "Zajedno uređenje"; $lang["items_buy_price_required"] = "Prodajna cijena ...
<?php namespace App\Http\Controllers; use App\Models\Activity\Price; use Illuminate\Http\Request; class PriceController extends Controller { /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { // } /** * Sho...
<?php use Illuminate\Http\Request; /* |-------------------------------------------------------------------------- | API Routes |-------------------------------------------------------------------------- | | Here is where you can register API routes for your application. These | routes are loaded by the RouteServicePr...
<?php namespace Encore\Admin\Form; use Encore\Admin\Facades\Admin; use Illuminate\Contracts\Support\Htmlable; use Illuminate\Contracts\Support\Renderable; use Illuminate\Support\Collection; class Tools implements Renderable { /** * @var Builder */ protected $form; /** * Collection of tool...
<?php namespace App\Http\Controllers\Admin; use App\Http\Controllers\Controller; use Illuminate\Http\Request; use Session; use App\Product; use App\ProductGallery; use App\Category; use App\Department; use App\ProductAttributeOption; use App\ProductVariant; use App\ProductAttribute; class AdminProductsControll...
<div class="container"> <div class="row"> <div class="col-md-12"> <div class="tab-v1"> <ul class="nav nav-tabs"> <li class="active"><a data-toggle="tab" href="#overview">Overview</a></li> <li><a data-toggle="tab" href="#episodes">Episodes</a></li> <li><a data-toggle...
<!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 namespace backend\controllers; use Yii; use common\lib\Workflow; use common\models\User; use yii\data\Pagination; use common\lib\Auth; use yii\filters\AccessRule; use yii\filters\AccessControl; use yii\web\Controller; class UserController extends Controller { public function beforeAction($event) { $this->...
<?php /* Plugin Name: Kofun Counter Description: Add-on for Mavis project in form of plugin for Wordpress, that count posts from given time. Version: 0.3 Author: Zegis Author: http://kofun.pl czyny id = 46 */ if( ! class_exists( 'Kofun_Counter') ) { class Kofun_Counter { public function __construct(){ ...
<?php /** * This file is part of the Tmdb PHP API created by Michael Roterman. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * @package Tmdb * @author Michael Roterman <michael@wtfz.net> * @copyright (c) 2013, Michael Roterman *...
<?php namespace App; use Illuminate\Database\Eloquent\Model; class System_users extends Model { // protected $fillable=[ 'username', 'email', 'phone', 'image', 'password' ]; }
<?php /** * [PHPFOX_HEADER] * * @copyright [PHPFOX_COPYRIGHT] * @author Raymond Benc * @package Module_Profile * @version $Id: header.html.php 3990 2012-03-09 15:28:08Z Raymond_Benc $ */ defined('PHPFOX') or exit('NO DICE!'); ?> <div id="js_cover_photo_iframe_loader_error"></div> <div id="js_cover...
<?php namespace App\Providers; use App\Http\Response\FractalResponse; use Illuminate\Support\ServiceProvider; use League\Fractal\Manager; use League\Fractal\Serializer\DataArraySerializer; use League\Fractal\Serializer\SerializerAbstract; class FractalServiceProvider extends ServiceProvider { public function reg...
<?php /*----------------------------------------------------------------------------- cheetan is licensed under the MIT license. copyright (c) 2006 cheetan all right reserved. http://php.cheetan.net/ -----------------------------------------------------------------------------*/ class CDBMysql extends CDBCommon { func...
<?php namespace App\Jobs; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Foundation\Bus\Dispatchable; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Queue\SerializesModels; use Illuminate\Support\Facades\Mail; class SendEmail implements ShouldQueue { use Dispatc...
@extends('layouts.layout') @section('content') <div class="panel panel-default"> <div class="panel-heading"> <div class="panel-title"> Edit {{ $groups->name }} </div> </div> <div class="panel-body"> <form method="POST" action="/groups/{{ $groups->id }}"...
<!DOCTYPE HTML> <html> <head> <meta charset="UTF-8"> <title>Monuments de Paris</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <!--Ajout de Bootstrap à partir du CDN--> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="s...
<?php declare(strict_types=1); namespace PsalmFormatter\Report; class SummaryReport { private bool $monochrome; public function __construct(bool $monochrome) { $this->monochrome = $monochrome; } public function create(int $issuesNumber): string { if($this->monochrome) { ...
<?php return array( //'配置项'=>'配置值' //'配置项'=>'配置值' 'DB_TYPE' => 'mysql', 'DB_HOST' => 'localhost', 'DB_PORT' => 3306, 'DB_USER' => 'root', 'DB_PWD' => 'DRsXT5ZJ6Oi55LPQ', 'DB_NAME' => 'thinkphp_inaction', 'DB_PREFIX'=> 'mb_' );
<?php namespace App\Exceptions; use Exception; use Illuminate\Auth\AuthenticationException; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; use Symfony\Component\HttpKernel\Exception\UnauthorizedHttpException; class Handler extends ExceptionHandler { /** * A list of the exception types tha...
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Orden extends Model { public $timestamps = false; protected $primaryKey = 'ORD_IDORDEN'; }
<?php require_once __DIR__ . "/vendor/autoload.php"; use Jaspersoft\Client\Client; $c = new Client( "http://192.168.1.112:8080/jasperserver", "jasperadmin", "jasperadmin" ); $report = $c->reportService()->runReport('/sisbim/rpt_bienes_no_ubicados', 'pdf',null,null); header('Cache-Control: must-revalid...