text stringlengths 2 1.03M |
|---|
<table>
<h1>For Activation User Account </h1>
<p>Dear {{$user->name}}</p>
<p>Thank you for Joining US.</p>
<hr/>
<p><b>Click here to active your Account</b></p>
<a class="btn btn-success" href="{{url($url)}}"> For verification</a>
</table> |
<footer>
<div class="footer">
<div class="container">
<div class="social-icon">
<div class="col-md-4">
<ul class="social-network">
<li><a href="#" class="fb tool-tip" title="Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a href="#" class="twitt... |
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class User extends CI_Controller {
public function __construct()
{
parent::__construct();
$this->load->model('user_model','user');
$this->load->model('file_model','doc');
}
public function index()
{
$nbDocAdAtt['nbDocAtt'] = sizeo... |
<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
use App\Entity\Dictamen;
use App\Entity\Expediente;
use App\Entity\Base\BaseClass;
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
/**
* DictamenOD
*
* @ORM\Table(name="dictamen_o_d")
* @ORM\Entity(repositoryClass="App\Repository\Dictam... |
<?php
namespace App\Http;
use Illuminate\Foundation\Http\Kernel as HttpKernel;
class Kernel extends HttpKernel
{
/**
* The application's global HTTP middleware stack.
*
* These middleware are run during every request to your application.
*
* @var array
*/
protected $middleware =... |
<?php
namespace estvoyage\value\tests\units;
require __DIR__ . '/../runner.php';
use
estvoyage\value\tests\units
;
class float extends units\test
{
function testClass()
{
$this->testedClass
->isAbstract
;
}
function testConstructorWithNoArgument()
{
$this->float((new float\testedClass)->asFloat)->is... |
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class Cooperative extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('cooperatives', functio... |
<?php
/**
* DO NOT EDIT THIS FILE!
*
* This file was automatically generated from external sources.
*
* Any manual change here will be lost the next time the SDK
* is updated. You've been warned!
*/
namespace PWCode\eBaySDK\Test\Feedback\Types;
use PWCode\eBaySDK\Feedback\Types\BaseServiceResponse;
class Base... |
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateWalletsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('wallets', funct... |
<?php
return [
/*
|--------------------------------------------------------------------------
| Application Name
|--------------------------------------------------------------------------
|
| This value is the name of your application. This value is used when the
| framework needs to plac... |
<?php
namespace App\Repositories\Eloquent;
use App\Models\User;
use App\Repositories\UserRepositoryInterface;
use App\Repositories\Eloquent\BaseRepository;
class UserRepository extends BaseRepository implements UserRepositoryInterface{
public function __construct(User $model){
parent::__construct($model... |
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateStudentsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('students', fun... |
<?php
namespace Olabs\Oims\ReportWidgets;
use BackendAuth;
use Backend\Models\AccessLog;
use Backend\Classes\ReportWidgetBase;
use Backend\Models\BrandSetting;
use Exception;
/**
* User report report widget.
*
* @package october\backend
* @author Alexey Bobkov, Samuel Georges
*/
class ProjectStatus extends Repo... |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>AdminLTE 2 | Blank Page</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="v... |
@extends('layouts.back')
@section('content')
<h1>Edition projet portfolio</h1>
<form class="container w-50 my-5" action="{{ route('portfolio.update', $portfolio->id) }}" method="POST">
@csrf
@method('PUT')
<div class="form-group ">
<label for="img">URL image</label>
... |
<footer class="main-footer">
<div class="footer-left">
<a href=<?= base_url() ?>>COMSTATS</a></a>
</div>
<div class="footer-right">
</div>
</footer>
<!-- Large modal -->
<div class="modal fade bd-View-User-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeM... |
<?php
namespace Mastercard;
/**
* Class OAuthErrorObject
*
* @property string $error
* @property string $error_description
*
* @package Mastercard
*/
class OAuthErrorObject extends MastercardObject
{
/**
* Refreshes this object using the provided values.
*
* @param array $values
* @par... |
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use App\User;
use App\Channel;
class CommunityLinks extends Model
{
protected $fillable = ['title', 'link', 'channel_id', 'approved'];
public function user(){
return $this->belongsTo(User::class);
}
public function channel(){
re... |
@extends('system-mgmt.division.base')
@section('action-content')
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="panel panel-default">
<div class="panel-heading">Add new division</div>
<div class="panel-body">
... |
<?php
include('common/header.php');
include('common/navbar.php');
include('content.php');
include('common/footer.php');
?> |
<?php if ( is_front_page() && is_home() ) : ?>
<h1 class="site-title">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
<?php bloginfo( 'name' ); ?>
</a>
</h1>
<?php else : ?>
<div class="site-title">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
<?php bloginfo( 'n... |
<?php
/**
* This file is auto-generated.
*/
declare(strict_types=1);
namespace TON\Client;
use JsonSerializable;
use stdClass;
class ResultOfBuildInfo implements JsonSerializable
{
private int $_buildNumber;
/** @var BuildInfoDependency[] */
private array $_dependencies;
public function __const... |
<?php
/**
* Example: Get and parse all emails without saving their attachments.
*
* @author Sebastian Krätzig <info@ts3-tools.info>
*/
declare(strict_types=1);
namespace PhpImap;
include('config.php');
include('connection.php');
include('PhpImap/Mailbox.php');
include('PhpImap/Imap.php');
incl... |
<?php
namespace App\Http\Middleware;
use Closure;
class AdminFilter
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
// check for admin... |
<?php
/* TunisiaMallTMBundle:clientView:CAccueil.html.twig */
class __TwigTemplate_3aefe7a36d4fc00145f8e100a6ac0155551c688188a18d9829d553aaf4cd5051 extends Twig_Template
{
public function __construct(Twig_Environment $env)
{
parent::__construct($env);
// line 2
$this->parent = $this->l... |
<div class="content">
<section class="max-w-7xl mx-auto px-5 md:px-7">
<livewire:partials.breadcrumbs
shop="shop"
:currentItemName="$product->name"
:category="$product->category"
/>
</section>
<section>
<div class="w-full max-w-7xl px-5 mx-au... |
@extends('layouts.app')
@section('content')
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card border-success mb-3">
<div class="card-header"><center>{{ __('Cadastrar Motorista') }}</center></div>
<div class=... |
@extends('principal')
@section('contenido')
</br></br></br>
<h1 class="titulo">Producto Eliminado</h1>
</br></br>
<div align="center"><a class="consultar" href='{{url("productos")}}'> Ver Catálogo </a></div>
</br></br></br></br></br></br></br></br></br></br></br>
@stop |
<?php
namespace App\Admin\Controllers;
use App\Models\{Product, Category, Attribute};
use Encore\Admin\Controllers\AdminController;
use Encore\Admin\Form;
use Encore\Admin\Grid;
use Encore\Admin\Show;
use Encore\Admin\Widgets\Table;
use App\Admin\Actions\Post\Replicate;
class ProductController extends AdminControlle... |
<?php
declare(strict_types=1);
namespace AlephTools\DDD\Common\Model\Exceptions;
class AccessDeniedException extends DomainException
{
} |
<style>
.eleman{
margin-left: 30px;
width: 200px;
margin-bottom: 10px;
border-left: solid gray;
}
</style>
<div class="row">
<div class="col-md-6 f_r">
<div class="form-group">
<label for="phone"> شماره تماس</label>
<input type="text" class="f... |
<?php
namespace apiadmin\modules\adminxx\models;
use Yii;
use common\models\MainModel;
/**
* This is the model class for table "auth_item".
*
* @property string $name
* @property int $type
* @property string $description
* @property string $rule_name
* @property resource $data
* @property int $created_at
* ... |
<!-- Required meta tags -->
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<meta name="csrf-token" content="{{ csrf_token() }}">
<meta name="keywords" content="your, tags"/>
<meta name="description" content="150 words"/>
<meta name="su... |
<?php
namespace app\models;
use Yii;
/**
* This is the model class for table "{{%dosen}}".
*
* @property string $kode_dosen
* @property string $nama_dosen
* @property string $tlp
* @property int $id_user
*
* @property User $user
* @property Jabatan[] $jabatans
* @property JadwalBimbingan[] $jadwalBimbingan... |
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class AddForeignKeysToGuestTagsTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('guest_tags', function(Blueprint $table)
{
$table->foreign('guest... |
<?php
namespace Test\Integration;
require_once dirname(__DIR__) . '/Setup.php';
use Test;
use Test\Setup;
use Braintree;
class PaymentMethodWithUsBankAccountTest extends Setup
{
public function testCreate_fromUsBankAccountNonce()
{
$customer = Braintree\Customer::createNoValidate();
$result ... |
@extends('layouts.admin')
@section('pagetitle')
<h3 class="m-0 text-dark">Edit Profile</h3>
@endsection
@section('content')
<div class="row">
<div class="col-xl-3">
<div class="card profile">
<div class="card-body">
<div class="text-center">
<img src="{{ Auth:... |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class User extends Model{
protected $table = 'tbluser';
// column sa table
protected $fillable = [
'username', 'password' , 'gender','jobid'
];
public $timestamps = false;
protected $primaryKey = 'userid';
... |
@if (isset($datas['isAccessAble']) && $datas['isAccessAble'])
@include('common.header_without_menu',['datas'=>$datas,'title' =>'The Exchange Visitor Program Quiz','page'=>'TheExchangeVisitorProgramQuiz'])
{!! Form::open(['action' => 'VisitorProgramQuizController@store', 'method' => 'POST', 'id' => 'gacccaForm_exchang... |
@extends('layouts.app')
@section('content')
<div class="container">
<div class="col-sm-offset-2 col-sm-8">
<div class="panel panel-default">
<div class="panel-heading">
New category </div>
<div class="panel-body">
<!-- Display Validation Errors -->
... |
<?php
namespace App\Http\Controllers;
use App\Order;
use App\Order_Product;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Crypt;
class OrderController extends Controller
{
public function __construct()
{
$this->middleware('auth:admin')->except(["userOrder", "index"]);;
}
/**
... |
<?php $__env->startSection("content"); ?>
<!-- Page Header -->
<!-- <div class="content bg-image" style="background-image: url('<?php echo e(URL::asset('admin_assets/img/photos/bg.jpg')); ?>');">
<div class="push-50-t push-15 clearfix">
<div class="push-15-r ... |
<!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, shrink-to-fit=no">
<meta name="robots" content="noindex">
<link rel="apple-touch-icon" sizes="180x180" href="/app... |
<?php
return array(
'layout' => 'layouts.backend',
'isDeleteDisabled' => true,
'moduleCode' => '',
'isAllowMeta' => true,
'foreignRefer' => array('key' => 'id', 'title' => 'organization_id'),
'menuTemplate' => array(
'index' => 'admin, create',
'admin' => 'create',
'create' => 'admin',
'update' => 'admin... |
@extends('layouts.admin')
@section('title')
<section class="content-header">
<h1>
Inicio
<small>Listar</small>
</h1>
<ol class="breadcrumb">
<li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
<li class="active">Inicio</li>
</... |
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +-------------------------------------------------... |
<?php
// autoload_real.php @generated by Composer
class ComposerAutoloaderInit6cc6b7f33508071e5f2ebc53ac6ff0be
{
private static $loader;
public static function loadClassLoader($class)
{
if ('Composer\Autoload\ClassLoader' === $class) {
require __DIR__ . '/ClassLoader.php';
}
... |
<?php
/**
* Copyright 2020 Art-ER S. Cons. P.A.
* EROI - Emilia Romagna Open Innovation is based on:
* https://www.open2.0.regione.lombardia.it
*
* @see https://repo.art-er.it Developers' community
* @license GPLv3
* @license https://opensource.org/licenses/gpl-3.0.html GNU General Public License version 3
*
*... |
<?php
namespace Jaguero\MeshiContactBundle\Controller;
use Jaguero\MeshiContactBundle\Entity\ContactFormData;
use Jaguero\MeshiContactBundle\Form\Type\CaptchaContactFormType;
use Jaguero\MeshiContactBundle\Form\Type\StandardContactFormType;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Bundle\FrameworkBun... |
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Province extends Model
{
protected $table = "provinces";
public function country()
{
return $this->belongsTo('App\Country','country_id');
}
public function cities()
{
return $this->hasMany('App\City');
}
... |
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class control_administrasi extends CI_Controller{
public function index(){
if(!$this->load->cek_sesi()) exit;
$this->dashboard();
}
public function dashboard(){
if(!$this->load->cek_sesi()) exit;
$this->load->model("mahasiswa");... |
<?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\PropertyAccess\Tests;
use PHPUnit\Framework\TestCase;... |
<div>
<div class="row">
<div class="col-md-12 text-right mb-2">
<button data-toggle="modal" data-target="#cadastrar-manutencao" class="btn btn-sm btn-info">
<i class="fas fa-plus-circle"></i>
LANÇAR MANUTENÇÃO/REVISÃO
</button>
</div>
</div... |
<footer id="footer">
<div class="footer_top">
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="footer_widget wow fadeInDown">
<h2>Tag</h2>
<ul class="tag_nav">
@foreach($tags as $tag)
<li><a href="{{route('ta... |
<?php
declare(strict_types = 1);
namespace Elasticsearch\Endpoints;
use Elasticsearch\Endpoints\AbstractEndpoint;
/**
* Class RankEval
* Elasticsearch API name rank_eval
* Generated running $ php util/GenerateEndpoints.php 7.6.0
*
* @category Elasticsearch
* @package Elasticsearch\Endpoints
* @author Enric... |
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel</title>
<!--Styles-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/di... |
<?php
// PMUserBundle::layout.html.twig
return array (
); |
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateProductOrdersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('product_o... |
<?php
/*
* This file is part of the ONGR package.
*
* (c) NFQ Technologies UAB <info@nfq.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace ONGR\ElasticsearchDSL\Tests\Unit\Unit\SearchEndpoint;
use ONGR\Elasticsearch... |
<div class="w3-container w3-twothird w3-center"><br>
<span class="w3-text-blue-grey w3-xlarge">
Withdrawal Requests
<?php
if ($withdrawal_switch == "false")
{
echo "<span class='w3-large w3-text-red'>OFF</span>";
}else{
echo "<span class='w3-large w3-text-green'>ON</span>";
}
?>
</span><br>
<?php
if(isset(... |
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model \app\models\tables\Inputs */
$this->title = "Изменить: $model->name_input";
$this->params['breadcrumbs'][] = ['label' => 'Вид ресурса', 'url' => ['index']];
$this->params['breadcrumbs'][] = ['label' => $model->name_input, 'url' => ['view', 'id'... |
<div class="fun-factor light-txt">
<div class="icon"><i class="<?php echo esc_attr($atts['icon']);?> light-txt"></i></div>
<div class="fun-info">
<h1 class="timer light-txt" data-from="0" data-to="<?php echo esc_attr($atts['value']);?>" data-speed="1000"> </h1>
<span><?php echo wp_kses_post($att... |
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateTeamsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('teams', function ... |
<?php
/* @WebProfiler/Icon/redirect.svg */
class __TwigTemplate_f547e80b4d0c09d61d64f56ca6544bd1e1ab7de0233253f4d67abd40d3518071 extends Twig_Template
{
public function __construct(Twig_Environment $env)
{
parent::__construct($env);
$this->parent = false;
$this->blocks = [
];
... |
<?php
defined('SYSPATH') or die('No direct script access.');
//-- Environment setup --------------------------------------------------------
/**
* Set the default time zone.
*
* @see http://docs.kohanaphp.com/about.configuration
* @see http://php.net/timezones
*/
date_default_timezone_set('Asia/Shanghai');
//d... |
<div class="col-md-4">
<div class="form-group">
<label for="department">Department</label>
<select class="form-control" name="department" id="department" onchange="getSection(this.value); applyFilterdepartment(this.value);">
<option selected="selected" value="0">~all department~</option>
<?php
foreach($division_depa... |
<?php
namespace app\models;
use yii\db\Query;
use yii\helpers\ArrayHelper;
class Products extends \yii\db\ActiveRecord{
public static function tableName()
{
return 'products';
}
public static function getInfo()
{
return self::find()->orderBy(['id' => SORT_DESC])->all();
}
... |
<!doctype html>
<html lang="{{ 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">
<title>Laravel</title>
<!-- Fonts -->
<link href="https://... |
<?php
namespace common\models;
/**
* This is the ActiveQuery class for [[CategoryChoices]].
*
* @see CategoryChoices
*/
class CategoryChoicesQuery extends \yii\db\ActiveQuery
{
/*public function active()
{
$this->andWhere('[[status]]=1');
return $this;
}*/
/**
* @inheritdoc
... |
<?php
namespace Tests\Unit\Handlers;
use Illuminate\Container\Container;
use LaravelBridge\Slim\App;
use LaravelBridge\Slim\Handlers\NotFound;
use LaravelBridge\Slim\Testing\Concerns\MakesHttpRequests;
use PHPUnit\Framework\TestCase;
use Slim\Http\Response;
class NotFoundTest extends TestCase
{
use MakesHttpRequ... |
<?php
require('../model/db_connection.php');
require('../model/db.php');
$action = filter_input(INPUT_POST, "action");
if($action == NULL)
{
$action = "show_login_page";
}
if($action == "show_login_page")
{
include('./index.php');
}else if($action == 'test_user')
{
$username = $_POST['username'];
$password = $_... |
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class FaturaIslem extends Model
{
protected $guarded = [];
} |
<?php
namespace Werp\Modules\Core\Purchases\Transformers;
use Werp\Transformers\Transformer;
class PriceListTypeTransformer extends Transformer
{
public function transform($item)
{
return [
'id' => $item['id'],
'name' => $item['name'],
'... |
<!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">
<title>Margaron</title>
<link rel="stylesheet" type="text/css" href="/css/app.css">
... |
<?php
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function aat_reavel_widgets_init() {
//search sidebar
register_sidebar( array(
'name' => __( 'Search Sidebar', 'aat-reavel' ),
'id' => 'search-sidebar-widget-1',
'description' =>... |
<?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 Initi... |
<?php
namespace App\Entity;
use ApiPlatform\Core\Annotation\ApiFilter;
use ApiPlatform\Core\Annotation\ApiProperty;
use ApiPlatform\Core\Annotation\ApiResource;
use ApiPlatform\Core\Bridge\Doctrine\Orm\Filter\OrderFilter;
use ApiPlatform\Core\Bridge\Doctrine\Orm\Filter\SearchFilter;
use ApiPlatform\Core\Serializer\Fi... |
<?php
namespace common\models;
use Yii;
use yii\helpers\Json;
/**
* This is the model class for table "oadode".
* This model is built by using Gii
*
* @property int $id
* @property int|null $application_id
* @property int|null $customer_id
* @property int|null $user_id
* @property string|null $legal_name
* ... |
<?php
namespace App;
use Illuminate\Contracts\Auth\Guard;
use Laravel\Socialite\Contracts\Factory as Socialite;
use App\Repositories\UserRepository;
use Request;
class AuthenticateUser
{
private $socialite;
private $auth;
private $users;
public function __construct(Socialite $socialite, Guard $aut... |
<?php
use App\Conversation;
use App\Reply;
use App\User;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
$users = factory(User::class, 5)->create();
$conversions = ... |
<?php
/*
* This file is part of the Elcodi package.
*
* Copyright (c) 2014-2016 Elcodi Networks S.L.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Feel free to edit as you please, and have fun.
*
* @author Marc Morera <yuhu@... |
<?php
class AccountService extends \Eloquent {
protected $fillable = [];
protected $connection = "sqlsrv";
protected $table = "tblAccountService";
protected $primaryKey = "AccountServiceID";
protected $guarded = array('AccountServiceID');
public static $rules = array(
);
public static $... |
<?php
function foo() {
echo "a\n";
exit(1);
}
function main() {
var_dump(pcntl_signal(SIGUSR1, 'foo'));
$pid = posix_getpid();
posix_kill($pid, SIGUSR1);
// Wait for signal to arrive.
while (true) continue;
}
main(); |
<?php
namespace App\Http\Controllers;
use App\Services\UptimeEventData;
class EventCountsTrendedController extends Controller
{
/**
* Display a listing of the resource.
* @return \Illuminate\Http\JsonResponse
*/
public function index()
{
return response()->json((new UptimeEventData... |
<?php
use Illuminate\Database\Seeder;
use App\User;
class UserSeed extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
$user = new User();
$user->name = 'student';
$user->email = 'student@root.com';
$user->password ... |
<?php
declare(strict_types=1);
namespace Rinvex\Attributes\Models\Type;
use Rinvex\Attributes\Models\Value;
/**
* Rinvex\Attributes\Models\Type\Text.
*
* @property int $id
* @property string $content
* @property int ... |
<?php
/*
* Copyright 2021 Google LLC
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... |
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License version 3.0
* that is bundled with this package in the file LICENSE.md.
* It is als... |
<?php namespace ProxyFetcher\Providers;
use GuzzleHttp\Exception\GuzzleException;
use ProxyFetcher\Proxy;
use Symfony\Component\DomCrawler\Crawler;
class ProxylistplusCom extends Provider implements ProviderInterface {
const URL = 'https://list.proxylistplus.com/Fresh-HTTP-Proxy-List-1';
/**
* @return a... |
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Product extends Base_Controller {
/**
* List of Products
*
* @access public
* @param
* @return view
*/
public function index()
{
$this->data['title'] = 'Product';
$this->data['subview'] = 'product/m... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Wanc Studios">
<link rel="icon" href... |
<?php
/*
* Simple request-reply broker
* @author Ian Barber <ian(dot)barber(at)gmail(dot)com>
*/
// Prepare our context and sockets
$context = new ZMQContext();
$frontend = new ZMQSocket($context, ZMQ::SOCKET_XREP);
$backend = new ZMQSocket($context, ZMQ::SOCKET_XREQ);
$frontend->bind("tcp://*:5559");
$backend->bi... |
<?php
// autoload_psr4.php @generated by Composer
$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
'phpDocumentor\\Reflection\\' => array($vendorDir . '/phpdocumentor/reflection-common/src', $vendorDir . '/phpdocumentor/type-resolver/src', $vendorDir . '/phpdocumentor/reflec... |
<hr>
<footer class="text-center section_padding_15 clearfix">
<div>
<h2>Pilkadiksi PNJ 2020</h2>
</div>
<!-- <div class="footer-social-icon"> -->
<a href="https://www.instagram.com/pilkadiksipnj/" target="__BLANK"> <i class="fa fa-instagram fa-2x mb-2" aria-hidden="true"></i></a>
<!-- </div> -->
<div class="co... |
<?php
use yii\helpers\Html;
/* @var $this yii\web\View */
/* @var $model common\models\StationType */
$this->title = 'Thêm mới loại trạm';
$this->params['breadcrumbs'][] = ['label' => 'DS Loại trạm', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="station-type-create">
<h4><?... |
<?php
/**
* Created by PhpStorm.
* User: me664
* Date: 4/16/15
* Time: 8:49 AM
*/
if(!class_exists('ST_Woocommerce'))
{
class ST_Woocommerce
{
private $_is_inited = FALSE;
/**
*
*
* @since 1.1.1
* */
function __construct()
{
... |
<title>User</title>
<h3><?php echo $firstname ?>'s User cr ui</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequa... |
<?php
declare(strict_types=1);
/*
* The MIT License (MIT)
*
* Copyright (c) 2014-2018 Spomky-Labs
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
namespace Jose\Component\Console;
use Jose\Component\Core\JWK;
use Jose\Component\Key... |
@if(is_default_lang())
@php $languages = \Modules\Language\Models\Language::getActive(); @endphp
<hr>
<div class="panel">
<div class="panel-title"><strong>{{__("Form Search Fields")}}</strong></div>
<div class="panel-body">
<div class="form-group" >
<label class="... |
<?php
header('Access-Control-Allow-Origin: *');
session_start();
echo "<pre>";exec("cd bin; cat mat1-ijk.log;", $output2);
var_dump($output2);
echo "</pre>";
echo "<pre>";
exec("cd bin; cat mat1-ikj.log;", $output3);
var_dump($output3);
echo "</pre>";
echo "<pre>";
exec("cd bin; cat mat1-jik.log;", $output4);
var_dump(... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.