update Equipments historys
This commit is contained in:
parent
19eaa4ce18
commit
c4d1ad1426
2
.env
2
.env
|
|
@ -1,7 +1,7 @@
|
|||
APP_NAME="ISPT4.0"
|
||||
APP_ENV=local
|
||||
APP_KEY=base64:ahx5/AvVGu/iHQx1mjX/EQg4m1NHLvtjzb6pFa49TlE=
|
||||
APP_DEBUG=false
|
||||
APP_DEBUG=true
|
||||
APP_URL=http://localhost
|
||||
APP_VERSION = "1.0.0"
|
||||
|
||||
|
|
|
|||
|
|
@ -12,7 +12,11 @@ class Kernel extends ConsoleKernel
|
|||
*/
|
||||
protected function schedule(Schedule $schedule): void
|
||||
{
|
||||
// $schedule->command('inspire')->hourly();
|
||||
$schedule->call(function () {
|
||||
\App\Models\CompanyProject::where('order_project', 2)
|
||||
->where('date_started', '<=', now())
|
||||
->update(['order_project' => 3]);
|
||||
})->everyMinute(); // Ou ajuste para a frequência desejada
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -99,6 +99,7 @@ public function addFurtherTasks(Request $request)
|
|||
{
|
||||
// Recebe e organiza os dados do equipameto recebido : ($request->equipmentID) e organiza em asc de acordo com a Ordem de execução
|
||||
$equipmentId = $request->equipmentID;
|
||||
|
||||
$tasksToReorder = OrderEquipmentTasks::where('equipment_id', $equipmentId)
|
||||
->orderBy('execution_order', 'asc')
|
||||
->get();
|
||||
|
|
|
|||
|
|
@ -37,6 +37,44 @@
|
|||
|
||||
class CreateProjectController extends Controller
|
||||
{
|
||||
public function changeStateProject($projectId)
|
||||
{
|
||||
$detailsPrpject = CompanyProject::where('company_projects_id', $projectId)->first();
|
||||
$detailsPrpject->order_project = 3;
|
||||
$detailsPrpject->save();
|
||||
|
||||
// Redireciona para a rota 'home' após alterar o estado para Execussao
|
||||
return redirect()->route('home');
|
||||
}
|
||||
|
||||
public function deleteProject($projectId)
|
||||
{
|
||||
|
||||
// Encontra o projeto pelo ID
|
||||
$deleteProject = CompanyProject::where('company_projects_id', $projectId)->first();
|
||||
|
||||
if ($deleteProject) {
|
||||
// Busca todas as ConstructionWorkstation associadas ao projeto
|
||||
$workstations = ConstructionWorkstation::where('company_projects_id', $projectId)->get();
|
||||
|
||||
foreach ($workstations as $workstation) {
|
||||
// Para cada workstation, busca usuários com o mesmo nome
|
||||
$user = User::where('user_name', $workstation->name_workstations)->first();
|
||||
|
||||
if ($user) {
|
||||
$user->delete();
|
||||
}
|
||||
}
|
||||
|
||||
// Deleta o projeto após processar as workstations
|
||||
$deleteProject->delete();
|
||||
|
||||
// Redireciona para a rota 'home' após a deleção
|
||||
return redirect()->route('home');
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public function changeAmbitEquipment(Request $request)
|
||||
{
|
||||
|
||||
|
|
@ -179,13 +217,17 @@ public function deleteFurtherTasks(Request $request)
|
|||
public function addFurtherTasks(Request $request)
|
||||
{
|
||||
// Recebe e organiza os dados do equipameto recebido : ($request->equipmentID) e organiza em asc de acordo com a Ordem de execução
|
||||
$equipmentId = $request->equipmentID;
|
||||
$tasksToReorder = OrderEquipmentTasks::where('equipment_id', $equipmentId)
|
||||
->orderBy('execution_order', 'asc')
|
||||
->get();
|
||||
// $equipmentId = $request->equipmentID;
|
||||
// $tasksToReorder = OrderEquipmentTasks::where('equipment_id', $equipmentId)
|
||||
// ->orderBy('execution_order', 'asc')
|
||||
// ->get();
|
||||
|
||||
$receiveDataEquipment = Equipment::where('equipment_id', $request->equipmentID)->first();
|
||||
|
||||
$receiveEquipmentWorkHistory = EquipmentWorkHistory::where('equipment_id', $request->equipmentID)
|
||||
->where('company_projects_id', $receiveDataEquipment->company_projects_id)
|
||||
->first();
|
||||
|
||||
|
||||
// *Para Criar uma nova Tarefa complementar deve ser a soma dos dados das 2 tabelas para dar o numero da proxima tarefa e assim o numero da TC
|
||||
// Obtenha a contagem de registros nas tabelas ElementalTasks e FurtherTasks
|
||||
|
|
@ -203,17 +245,17 @@ public function addFurtherTasks(Request $request)
|
|||
$insertPosition = $request->ArrayListElementsTasks + 1;
|
||||
|
||||
// Incrementar a execution_order das tarefas após a posição de inserção
|
||||
foreach ($tasksToReorder as $task) {
|
||||
if ($task->execution_order >= $insertPosition) {
|
||||
$task->execution_order += 1;
|
||||
$task->save();
|
||||
}
|
||||
}
|
||||
// foreach ($tasksToReorder as $task) {
|
||||
// if ($task->execution_order >= $insertPosition) {
|
||||
// $task->execution_order += 1;
|
||||
// $task->save();
|
||||
// }
|
||||
// }
|
||||
|
||||
// Agora, insira a nova tarefa na posição desejada
|
||||
$newOrderEquipmentTask = new OrderEquipmentTasks;
|
||||
$newOrderEquipmentTask->equipment_id = $equipmentId;
|
||||
$newOrderEquipmentTask->execution_order = $insertPosition;
|
||||
$newOrderEquipmentTask->equipmentWorkHistorys_id = $receiveEquipmentWorkHistory->equipmentWorkHistorys_id;
|
||||
$newOrderEquipmentTask->execution_order = null;
|
||||
$newOrderEquipmentTask->elemental_tasks_id = null;
|
||||
|
||||
// Se o selectedFurtherTaskExisting for null quer dizer que e uma TC complementar criada e nova se nao for null quer dizer que vamos criar uma TC existente.
|
||||
|
|
@ -305,18 +347,23 @@ public function receiveEquipmentToAssociateTasks(Request $request)
|
|||
|
||||
public function receiveUnitsForExcelTemplate($numberProject)
|
||||
{
|
||||
// Dados do Projecto
|
||||
$receveCompanyProject = CompanyProject::where('company_projects_id', $numberProject)->first();
|
||||
// Dados da Instalação
|
||||
$recevePlant = Plant::where('plant_id', $receveCompanyProject->plant_id)->first();
|
||||
// Dados das Fabricas
|
||||
$receveUnits = Unit::where('plant_id', $recevePlant->plant_id)->get();
|
||||
|
||||
// dd($receveUnits);
|
||||
$filePath = public_path('templateExcel/Valves_Template.xlsx');
|
||||
// Load the spreadsheet
|
||||
$spreadsheet = IOFactory::load($filePath);
|
||||
// Get the second sheet
|
||||
$sheet = $spreadsheet->getSheet(1); // Sheet index starts from 0
|
||||
$row = 1; // Row number where you want to start inserting data
|
||||
$row = 2; // Row number where you want to start inserting data
|
||||
foreach ($receveUnits as $unit) {
|
||||
// Set value for column D
|
||||
$sheet->setCellValue('D' . $row, $unit->unit_name);
|
||||
$sheet->setCellValue('A' . $row, $unit->unit_name);
|
||||
$row++;
|
||||
}
|
||||
|
||||
|
|
@ -490,9 +537,10 @@ public function removeProjectEquipment(Request $request)
|
|||
|
||||
return back()->with('success', 'Equipamento retirado da obra !');
|
||||
}
|
||||
public function EditEquipmentsProjects(Request $request)
|
||||
public function EditEquipment (Request $request)
|
||||
{
|
||||
// dd($request);
|
||||
dd($request);
|
||||
|
||||
// Localiza o equipment pelo numberProject
|
||||
$equipment = Equipment::find($request->equipmentId);
|
||||
|
||||
|
|
@ -717,7 +765,7 @@ public function EditprocessStep1(Request $request)
|
|||
$project->project_ispt_responsible = $request->input('responsible_project_ispt');
|
||||
|
||||
//Verifica se exsite uma nova data, se existe atualiza o projecto com a nova, se nao existir usa a antiga
|
||||
if($request->date_started <> null){
|
||||
if ($request->date_started <> null) {
|
||||
$project->date_started = $request->input('date_started');
|
||||
} else {
|
||||
$project->date_started = $request->input('date_started_present');
|
||||
|
|
@ -742,6 +790,9 @@ public function CreateNewEquipmentFromPendingEquipment(Request $request, $id)
|
|||
{
|
||||
$checkPendingEquipment = PendingEquipment::findOrFail($id);
|
||||
|
||||
// dd($checkPendingEquipment);
|
||||
|
||||
//Para que serve ??
|
||||
$counter = 2;
|
||||
$baseTag = $checkPendingEquipment->pending_equipment_tag;
|
||||
$baseDescription = $checkPendingEquipment->pending_equipment_description;
|
||||
|
|
@ -762,14 +813,41 @@ public function CreateNewEquipmentFromPendingEquipment(Request $request, $id)
|
|||
$newEquipment->company_projects_id = $checkPendingEquipment->pending_company_projects_id;
|
||||
$newEquipment->save();
|
||||
|
||||
$receiveEquipmentID = $newEquipment->equipment_id;
|
||||
$newEquipmentWorkHistory = new EquipmentWorkHistory;
|
||||
$newEquipmentWorkHistory->equipment_id = $newEquipment->equipment_id;
|
||||
$newEquipmentWorkHistory->company_projects_id = $newEquipment->company_projects_id;
|
||||
|
||||
// Busca o maior ispt_number para o company_projects_id específico
|
||||
$lastIsptNumber = EquipmentWorkHistory::where('company_projects_id', $newEquipment->company_projects_id)
|
||||
->max('ispt_number');
|
||||
|
||||
// Se não houver registros, definimos o primeiro número para 1, caso contrário, incrementamos o último número encontrado
|
||||
$newIsptNumber = $lastIsptNumber ? $lastIsptNumber + 1 : 1;
|
||||
|
||||
// Agora, atribuímos o novo número ISPT ao registro de histórico de equipamento
|
||||
$newEquipmentWorkHistory->ispt_number = $newIsptNumber;
|
||||
|
||||
$newEquipmentWorkHistory->save();
|
||||
|
||||
|
||||
$newEquipmentAssociationAmbits = new EquipmentAssociationAmbit;
|
||||
$newEquipmentAssociationAmbits->equipment_type_id = $newEquipment->equipment_type_id;
|
||||
$newEquipmentAssociationAmbits->equipmentWorkHistorys_id = $newEquipmentWorkHistory->equipmentWorkHistorys_id;
|
||||
$newEquipmentAssociationAmbits->ambits_id = $request->EquipmentAmbit;
|
||||
$newEquipmentAssociationAmbits->equipment_id = $receiveEquipmentID;
|
||||
$newEquipmentAssociationAmbits->equipment_type_id = $checkPendingEquipment->pending_equipment_type_id;
|
||||
$newEquipmentAssociationAmbits->save();
|
||||
|
||||
//Recebe a tabela com as associoacoes entre Âmbitos e tarefas Elementares
|
||||
$TasksAssociationAmbits = TasksAssociationAmbits::all()->where('ambits_equipment_id', $newEquipmentAssociationAmbits->ambits_id);
|
||||
|
||||
foreach ($TasksAssociationAmbits as $TasksAssociationAmbit) {
|
||||
$JoinsEquipmentsWithTasks = new OrderEquipmentTasks;
|
||||
$JoinsEquipmentsWithTasks->equipmentWorkHistorys_id = $newEquipmentWorkHistory->equipmentWorkHistorys_id;
|
||||
$JoinsEquipmentsWithTasks->execution_order = null;
|
||||
$JoinsEquipmentsWithTasks->elemental_tasks_id = $TasksAssociationAmbit->elemental_tasks_id;
|
||||
$JoinsEquipmentsWithTasks->further_tasks_id = null;
|
||||
$JoinsEquipmentsWithTasks->inspection = 2;
|
||||
$JoinsEquipmentsWithTasks->save();
|
||||
}
|
||||
|
||||
|
||||
$checkPendingEquipment->delete();
|
||||
|
|
@ -780,6 +858,7 @@ public function CreateNewEquipmentFromPendingEquipment(Request $request, $id)
|
|||
|
||||
public function processStep1(Request $request)
|
||||
{
|
||||
// dd($request);
|
||||
//NAO DEVE SER CRIAR UMA NOVA EMPRESA NA CRIACAO DA OBRA (era uma boa ideia para facilitar ao Admin ter que criar a empresa para Depois a Obra, mas e necessario pelo facto da autentificao de 2 factores e envio e email , entao devido essa adicoes, nao preciso atualmente fazer sentido criar isto)
|
||||
// Dito isto vamos sempre pensar que o Cliente ja deve estar criado , para ser feita uma Obra para o mesmo.
|
||||
// dd($request);
|
||||
|
|
@ -804,6 +883,17 @@ public function processStep1(Request $request)
|
|||
|
||||
// Use o id da nova instalação.
|
||||
$installationId = $newInstallation->plant_id;
|
||||
|
||||
// Verifica se há nomes de fábricas para criar
|
||||
$factoryNames = $request->input('factoryNames', []);
|
||||
|
||||
foreach ($factoryNames as $factoryName) {
|
||||
$newUnit = new Unit; // Supondo que `Unit` é o seu modelo para as fábricas
|
||||
$newUnit->unit_name = $factoryName;
|
||||
$newUnit->plant_id = $installationId; // ID da instalação criada anteriormente
|
||||
$newUnit->save(); // Salva a nova fábrica no banco de dados
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
$receiveDetailsPlant = Plant::where('plant_id', $installationId)->first();
|
||||
|
|
@ -1446,8 +1536,6 @@ public function showStep3($company_projects_id)
|
|||
|
||||
public function workstationsAssociationTasks(Request $request)
|
||||
{
|
||||
// dd($request);
|
||||
|
||||
$workStation = ConstructionWorkstation::where('id_workstations', $request->idWorkStation)->first();
|
||||
|
||||
// Trocar o nome se for diferente do recebido
|
||||
|
|
|
|||
|
|
@ -68,6 +68,176 @@ public function getDataEquipmentClient(Request $request)
|
|||
}
|
||||
|
||||
public function getDataEquipment(Request $request)
|
||||
{
|
||||
//Variaveis recebidos da Obra em Planeamento (Filtros)
|
||||
$numberProject = $request->get('numberProject');
|
||||
$receiveRespostUnitsSelect = $request->get('checkUnits');
|
||||
$receiveRespostPlatsSelect = $request->get('tipo_valvulasList');
|
||||
|
||||
// Variaveis recebidas da gestao de ativos (Filtros)
|
||||
$receiveAllClients = $request->get('receiveAllClients');
|
||||
$receiveAllPlants = $request->get('receiveAllPlants');
|
||||
$receiveAllUnits = $request->get('receiveAllUnits');
|
||||
$receiveEquipmentsType = $request->get('receiveEquipmentsType');
|
||||
|
||||
|
||||
|
||||
|
||||
// Se receber o numero do projecto.
|
||||
if ($numberProject) {
|
||||
|
||||
// Query para DataTables do Planeamento
|
||||
$query = Equipment::with('equipmentType', 'unit', 'equipmentWorkHistory')
|
||||
->where('company_projects_id', $numberProject)
|
||||
->select(['equipment_id', 'equipment_tag', 'unit_id', 'equipment_type_id', 'equipment_description']);
|
||||
|
||||
if ($receiveRespostUnitsSelect && $receiveRespostUnitsSelect !== '#') {
|
||||
$query->where('unit_id', $receiveRespostUnitsSelect);
|
||||
}
|
||||
|
||||
if ($receiveRespostPlatsSelect && $receiveRespostPlatsSelect !== '#') {
|
||||
$query->where('equipment_type_id', $receiveRespostPlatsSelect);
|
||||
}
|
||||
|
||||
// Executa a consulta e obtém os resultados
|
||||
$equipment = $query->get();
|
||||
|
||||
return DataTables::of($equipment)
|
||||
->addColumn('ispt_number', function ($equipment) {
|
||||
// Assumindo que você quer o 'ispt_number' do primeiro 'EquipmentWorkHistory' que corresponde ao 'company_projects_id'
|
||||
$equipmentWorkHistory = $equipment->equipmentWorkHistory->first();
|
||||
return $equipmentWorkHistory ? $equipmentWorkHistory->ispt_number : 'N/A';
|
||||
})
|
||||
|
||||
->addColumn('unit_name', function ($equipment) {
|
||||
// Retorna 'unit_name' do relacionamento 'unit'
|
||||
return $equipment->unit ? $equipment->unit->unit_name : 'N/A';
|
||||
})
|
||||
->addColumn('equipment_type_name', function ($equipment) {
|
||||
// Retorna 'equipment_type_name' do relacionamento 'equipmentType'
|
||||
return $equipment->equipmentType ? $equipment->equipmentType->equipment_type_name : 'N/A';
|
||||
})
|
||||
|
||||
->addColumn('ambit', function ($equipment) {
|
||||
$firstEquipmentWorkHistory = $equipment->equipmentWorkHistory->first();
|
||||
return $firstEquipmentWorkHistory->equipmentAssociationAmbit->ambitsEquipment->ambits_description;
|
||||
})
|
||||
|
||||
->addColumn('action', function ($equipment) use ($numberProject) {
|
||||
$dropdownHtml = '<div class="d-flex justify-content-center dropdown">
|
||||
<button data-toggle="dropdown" aria-expanded="false" class="actions-btn btn btn-light circle">
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
</button>
|
||||
<div class="dropdown-menu dropdown-menu-light">';
|
||||
|
||||
// Adiciona a primeira ação (Detalhes do equipamento)
|
||||
$detailsUrl = !is_null($numberProject) ? route('projectDetails_11', ['projectID' => $numberProject, 'equipmentID' => $equipment->equipment_id]) : route('articulated_22', ['equipmentID' => $equipment->equipment_id]);
|
||||
$dropdownHtml .= '<a href="' . $detailsUrl . '" class="dropdown-item text-primary">
|
||||
<i class="fa-solid fa-eye text-primary"></i>
|
||||
Detalhes
|
||||
</a>';
|
||||
|
||||
// Adiciona a ação para abrir a modal para Trocar de Ambito
|
||||
$dropdownHtml .= '<button class="dropdown-item text-primary" data-toggle="modal" data-target="#modal-changeAmbitEquipment-' . $equipment->equipment_id . '">
|
||||
<i class="fa-solid fa-pen text-primary"></i>
|
||||
Trocar de Ambito
|
||||
</button>';
|
||||
|
||||
// Adiciona a ação para abrir a modal para apagar
|
||||
$dropdownHtml .= '<button class="dropdown-item text-primary" data-toggle="modal" data-target="#modal-confirmDeleteEquipmentInProject-' . $equipment->equipment_id . '">
|
||||
<i class="fa-solid fa-trash text-primary"></i>
|
||||
Apagar
|
||||
</button>';
|
||||
|
||||
$dropdownHtml .= '</div></div>'; // Fecha as tags do dropdown
|
||||
|
||||
return $dropdownHtml;
|
||||
})
|
||||
->make(true);
|
||||
} else {
|
||||
// Query padrão que todas as dataTables recebem, a partir dele fazemos os filt
|
||||
$query = Equipment::with('equipmentType', 'unit')
|
||||
->select(['equipment_id', 'equipment_tag', 'unit_id', 'equipment_type_id', 'equipment_description']);
|
||||
|
||||
//Filtar equipamentos por um cliente .
|
||||
if ($receiveAllClients && $receiveAllClients !== '#') {
|
||||
// Filtra os equipamentos cujas unidades estão associadas às plantas do usuário especificado
|
||||
$query->whereHas('unit.plant', function ($query) use ($receiveAllClients) {
|
||||
$query->where('user_id', $receiveAllClients);
|
||||
});
|
||||
}
|
||||
//Filtar equipamentos por uma instalacao .
|
||||
if ($receiveAllPlants && $receiveAllPlants !== '#') {
|
||||
$query->whereHas('unit', function ($query) use ($receiveAllPlants) {
|
||||
$query->where('plant_id', $receiveAllPlants);
|
||||
});
|
||||
}
|
||||
//Filtrar por Uma fabrica
|
||||
if ($receiveAllUnits && $receiveAllUnits !== '#') {
|
||||
$query->where('unit_id', $receiveAllUnits);
|
||||
}
|
||||
//Filtrar por tipo de equipamento
|
||||
if ($receiveEquipmentsType && $receiveEquipmentsType !== '#') {
|
||||
$query->where('equipment_type_id', $receiveEquipmentsType);
|
||||
}
|
||||
|
||||
|
||||
// Executa a consulta e obtém os resultados
|
||||
$equipment = $query->get();
|
||||
|
||||
return DataTables::of($equipment)
|
||||
|
||||
->addColumn('client_name', function ($equipment) {
|
||||
return $equipment->unit->plant->user ? $equipment->unit->plant->user->user_name : 'N/A';
|
||||
})
|
||||
|
||||
->addColumn('unit_name', function ($equipment) {
|
||||
// Retorna 'unit_name' do relacionamento 'unit'
|
||||
return $equipment->unit ? $equipment->unit->unit_name : 'N/A';
|
||||
})
|
||||
->addColumn('equipment_type_name', function ($equipment) {
|
||||
// Retorna 'equipment_type_name' do relacionamento 'equipmentType'
|
||||
return $equipment->equipmentType ? $equipment->equipmentType->equipment_type_name : 'N/A';
|
||||
})
|
||||
|
||||
->addColumn('action', function ($equipment) use ($numberProject) {
|
||||
$dropdownHtml = '<div class="d-flex justify-content-center dropdown">
|
||||
<button data-toggle="dropdown" aria-expanded="false" class="actions-btn btn btn-light circle">
|
||||
<i class="fa fa-ellipsis-v"></i>
|
||||
</button>
|
||||
<div class="dropdown-menu dropdown-menu-light">';
|
||||
|
||||
// Adiciona a primeira ação (Detalhes do equipamento)
|
||||
$detailsUrl = route('articulated_22', ['equipmentID' => $equipment->equipment_id]);
|
||||
$dropdownHtml .= '<a href="' . $detailsUrl . '" class="dropdown-item text-primary">
|
||||
<i class="fa-solid fa-eye text-primary"></i>
|
||||
Detalhes
|
||||
</a>';
|
||||
// Adiciona a ação para abrir a modal para apagar
|
||||
$dropdownHtml .= '<button class="dropdown-item text-primary" data-toggle="modal" data-target="#modal-confirmDeleteEquipmentInProject-' . $equipment->equipment_id . '">
|
||||
<i class="fa-solid fa-trash text-primary"></i>
|
||||
Apagar
|
||||
</button>';
|
||||
|
||||
|
||||
// Adicionar outras ações aqui, como editar e deletar, conforme necessário
|
||||
//Adicionar o "Apagar" e "Trocar de Ambito"
|
||||
|
||||
$dropdownHtml .= '</div></div>'; // Fecha as tags do dropdown
|
||||
|
||||
return $dropdownHtml;
|
||||
})
|
||||
|
||||
|
||||
|
||||
->make(true);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
public function getDataEquipment1(Request $request)
|
||||
{
|
||||
// pode receber um request ou nao, depende de onde for chamado. (Tabela de equipamentos associada a uma Obra)
|
||||
$numberProject = $request->get('numberProject');
|
||||
|
|
@ -237,6 +407,17 @@ public function getDataEquipment(Request $request)
|
|||
->make(true);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public function enterWorkstation()
|
||||
{
|
||||
return view('workstations/index');
|
||||
|
|
|
|||
|
|
@ -13,22 +13,43 @@
|
|||
use App\Models\EquipmentType;
|
||||
use App\Models\Unit;
|
||||
use App\Models\AmbitsEquipment;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
|
||||
use PDF;
|
||||
// use PDF;
|
||||
|
||||
use Mpdf\Mpdf;
|
||||
|
||||
|
||||
class PreparedProjectController extends Controller
|
||||
{
|
||||
public function showDetailsEquipmentForQrCode($equipmentId,$projectId){
|
||||
// dd($equipmentId);
|
||||
$detailsEquipment = Equipment::find($equipmentId);
|
||||
// dd($detailsEquipment);
|
||||
// public function showDetailsEquipmentForQrCode($equipmentId,$projectId){
|
||||
// // dd($equipmentId);
|
||||
// $detailsEquipment = Equipment::find($equipmentId);
|
||||
// $userLogoPath = Auth::user()->user_logo ? asset('user_logos/' . Auth::user()->user_logo) : asset('user_logos/logoISPT4.0.jpg');
|
||||
|
||||
$pdf = PDF::loadView('projectsClients.showDetailsEquipmentForQrCodePdf',[
|
||||
'detailsEquipment' => $detailsEquipment
|
||||
])
|
||||
->setPaper('a4');
|
||||
return $pdf->stream('teste.pdf');
|
||||
// // dd($detailsEquipment);
|
||||
// $pdf = PDF::loadView('projectsClients.showDetailsEquipmentForQrCodePdf',[
|
||||
// 'detailsEquipment' => $detailsEquipment,
|
||||
// 'userLogoPath' => $userLogoPath
|
||||
// ])->setPaper('a4');
|
||||
|
||||
// return $pdf->stream('teste.pdf');
|
||||
// }
|
||||
|
||||
public function showDetailsEquipmentForQrCode($equipmentId, $projectId)
|
||||
{
|
||||
$detailsEquipment = Equipment::find($equipmentId);
|
||||
// Determina o caminho do logo do usuário ou um padrão.
|
||||
$userLogoPath = Auth::user()->user_logo ? asset('user_logos/' . Auth::user()->user_logo) : asset('user_logos/logoISPT4.0.jpg');
|
||||
$html = view('projectsClients.showDetailsEquipmentForQrCodePdf', [
|
||||
'detailsEquipment' => $detailsEquipment,
|
||||
'userLogoPath' => $userLogoPath])->render();
|
||||
// Cria uma instância do mPDF
|
||||
$mpdf = new Mpdf();
|
||||
// Escreve o HTML para o mPDF
|
||||
$mpdf->WriteHTML($html);
|
||||
// Gera o PDF no navegador
|
||||
$mpdf->Output('nome_do_arquivo.pdf', 'I');
|
||||
}
|
||||
|
||||
public function PreparedProject($ProjectId)
|
||||
|
|
@ -48,7 +69,7 @@ public function PreparedProject($ProjectId)
|
|||
->where('company_projects.company_projects_id', '=', $numberProject->company_projects_id)
|
||||
->get();
|
||||
|
||||
// dd($equipmentsProjects);
|
||||
// dd($equipmentsProjects);
|
||||
return view('projectsClients/preparedProject')
|
||||
// ->with('equipmentsProjects', $equipmentsProjects)
|
||||
->with('equipmentsTypes', $equipmentsTypes)
|
||||
|
|
@ -102,7 +123,7 @@ public function getData1()
|
|||
$model->where('equipment_association_ambits.ambits_id', $ambits_id);
|
||||
}
|
||||
}
|
||||
if(request()->has('inspec') && request('inspec') != '#') {
|
||||
if (request()->has('inspec') && request('inspec') != '#') {
|
||||
$inspectionFilter = request('inspec') === 'Sim';
|
||||
$model->whereHas('orderEquipmentTasks', function ($query) use ($inspectionFilter) {
|
||||
$query->where('inspection', $inspectionFilter ? 'Sim' : 'Nao');
|
||||
|
|
|
|||
|
|
@ -33,6 +33,37 @@
|
|||
|
||||
class ProjectoDatacontroller extends Controller
|
||||
{
|
||||
public function checkProjectIsptNumber(Request $request, $projectId = null)
|
||||
{
|
||||
$number = $request->get('number');
|
||||
$type = $request->get('type'); // 'ispt' ou 'company'
|
||||
|
||||
$column = $type == 'ispt' ? 'project_ispt_number' : 'project_company_number';
|
||||
|
||||
// Inicialmente verifica se o número já existe
|
||||
$query = CompanyProject::where($column, $number);
|
||||
|
||||
if (!is_null($projectId)) {
|
||||
// Se $projectId não for nulo, exclui o projeto atual da verificação
|
||||
$query->where('company_projects_id', '!=', $projectId);
|
||||
}
|
||||
|
||||
$exists = $query->exists();
|
||||
|
||||
// Verifica também se o número pertence ao projeto atual sendo editado
|
||||
$isCurrentProjectNumber = false;
|
||||
if (!is_null($projectId)) {
|
||||
$isCurrentProjectNumber = CompanyProject::where('company_projects_id', $projectId)
|
||||
->where($column, $number)
|
||||
->exists();
|
||||
}
|
||||
|
||||
return response()->json([
|
||||
'exists' => $exists,
|
||||
'isCurrentProjectNumber' => $isCurrentProjectNumber
|
||||
]);
|
||||
}
|
||||
|
||||
|
||||
public function showAmbitDetailsProjectHistory($projectID, $equipmentID)
|
||||
{
|
||||
|
|
@ -41,7 +72,7 @@ public function showAmbitDetailsProjectHistory($projectID, $equipmentID)
|
|||
$detalsEquipmentWorkProject = EquipmentWorkHistory::where('equipment_id', $equipmentID)
|
||||
->where('company_projects_id', $projectID)->first();
|
||||
|
||||
$detalsEquipment = Equipment::where('equipment_id',$equipmentID)->first();
|
||||
$detalsEquipment = Equipment::where('equipment_id', $equipmentID)->first();
|
||||
|
||||
$receiveAllTasksHistiory = ControlEquipmentWorkstation::where('equipmentWorkHistorys_id', $detalsEquipmentWorkProject->equipmentWorkHistorys_id)->get();
|
||||
|
||||
|
|
@ -134,7 +165,7 @@ public function showAmbitDetailsProjectHistory($projectID, $equipmentID)
|
|||
//buscar Tarfas e tempo de execussao pelo control, assim como suas respostas.
|
||||
// dd($receiveAmbit);
|
||||
|
||||
return view('projectsClients.showAmbitDetailProjectHistory', compact('detailsProject', 'receiveAmbit', 'receiveAllTasksHistiory','detalsEquipment'));
|
||||
return view('projectsClients.showAmbitDetailProjectHistory', compact('detailsProject', 'receiveAmbit', 'receiveAllTasksHistiory', 'detalsEquipment'));
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -259,6 +290,8 @@ public function projectDetails_11($projectID, $equipmentID)
|
|||
|
||||
$dataEquipment = Equipment::find($equipmentID);
|
||||
|
||||
$detailsEquipmentWorkHistory = EquipmentWorkHistory::where('equipment_id',$dataEquipment->equipment_id)->first();
|
||||
|
||||
$receiveEquipmentWorkHistorys = EquipmentWorkHistory::where('equipment_id', $equipmentID)
|
||||
->where('company_projects_id', $projectID)
|
||||
->first();
|
||||
|
|
@ -267,7 +300,8 @@ public function projectDetails_11($projectID, $equipmentID)
|
|||
$OrdemTasks = OrderEquipmentTasks::where('equipmentWorkHistorys_id', $receiveEquipmentWorkHistorys->equipmentWorkHistorys_id)->get(); // Todas as tarefas que o equipamento vai realizar :
|
||||
$OrdemTasksIds = $OrdemTasks->pluck('elemental_tasks_id')->all(); // Array de IDs
|
||||
|
||||
return view('projectsClients.articulated_2_ShowEquipment', compact('dataEquipment', 'OrdemTasks', 'OrdemTasksIds'));
|
||||
|
||||
return view('projectsClients.articulated_2_ShowEquipment', compact('dataEquipment', 'OrdemTasks', 'OrdemTasksIds','detailsEquipmentWorkHistory'));
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
namespace App\Livewire\Articulado;
|
||||
|
||||
use App\Models\EquipmentWorkHistory;
|
||||
use Livewire\Component;
|
||||
|
||||
use App\Models\OrderEquipmentTasks;
|
||||
|
|
@ -22,12 +23,17 @@ public function mount($equipment)
|
|||
{
|
||||
$this->equipment = $equipment;
|
||||
|
||||
$this->tasks = OrderEquipmentTasks::where('equipment_id', $this->equipment->equipment_id)
|
||||
|
||||
$receveEquipmentWorkHistory = EquipmentWorkHistory::where('equipment_id',$this->equipment->equipment_id)
|
||||
->where('company_projects_id', $this->equipment->company_projects_id)
|
||||
->first();
|
||||
|
||||
$this->tasks = OrderEquipmentTasks::where('equipmentWorkHistorys_id',$receveEquipmentWorkHistory->equipmentWorkHistorys_id)
|
||||
->orderBy('execution_order', 'asc')
|
||||
->get();
|
||||
|
||||
// Coletando todos os registros onde further_tasks_id é diferente de null
|
||||
$this->furtherTaskRecords = OrderEquipmentTasks::where('equipment_id', $this->equipment->equipment_id)
|
||||
$this->furtherTaskRecords = OrderEquipmentTasks::where('equipmentWorkHistorys_id',$receveEquipmentWorkHistory->equipmentWorkHistorys_id)
|
||||
->whereNotNull('further_tasks_id')
|
||||
->get();
|
||||
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
"laravel/sanctum": "^3.2",
|
||||
"laravel/tinker": "^2.8",
|
||||
"livewire/livewire": "^3.0",
|
||||
"mpdf/mpdf": "^8.2",
|
||||
"phpoffice/phpspreadsheet": "^1.28",
|
||||
"symfony/http-client": "^6.2",
|
||||
"symfony/mailgun-mailer": "^6.2",
|
||||
|
|
|
|||
415
composer.lock
generated
415
composer.lock
generated
|
|
@ -4,7 +4,7 @@
|
|||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "94bd00d99da5a6ebf03ba946180bb306",
|
||||
"content-hash": "64083e5824273dda380cfc7b6f6c0897",
|
||||
"packages": [
|
||||
{
|
||||
"name": "bacon/bacon-qr-code",
|
||||
|
|
@ -2495,6 +2495,238 @@
|
|||
],
|
||||
"time": "2023-02-06T13:46:10+00:00"
|
||||
},
|
||||
{
|
||||
"name": "mpdf/mpdf",
|
||||
"version": "v8.2.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/mpdf/mpdf.git",
|
||||
"reference": "596a87b876d7793be7be060a8ac13424de120dd5"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/mpdf/mpdf/zipball/596a87b876d7793be7be060a8ac13424de120dd5",
|
||||
"reference": "596a87b876d7793be7be060a8ac13424de120dd5",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"ext-gd": "*",
|
||||
"ext-mbstring": "*",
|
||||
"mpdf/psr-http-message-shim": "^1.0 || ^2.0",
|
||||
"mpdf/psr-log-aware-trait": "^2.0 || ^3.0",
|
||||
"myclabs/deep-copy": "^1.7",
|
||||
"paragonie/random_compat": "^1.4|^2.0|^9.99.99",
|
||||
"php": "^5.6 || ^7.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
|
||||
"psr/http-message": "^1.0 || ^2.0",
|
||||
"psr/log": "^1.0 || ^2.0 || ^3.0",
|
||||
"setasign/fpdi": "^2.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"mockery/mockery": "^1.3.0",
|
||||
"mpdf/qrcode": "^1.1.0",
|
||||
"squizlabs/php_codesniffer": "^3.5.0",
|
||||
"tracy/tracy": "~2.5",
|
||||
"yoast/phpunit-polyfills": "^1.0"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-bcmath": "Needed for generation of some types of barcodes",
|
||||
"ext-xml": "Needed mainly for SVG manipulation",
|
||||
"ext-zlib": "Needed for compression of embedded resources, such as fonts"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"files": [
|
||||
"src/functions.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"Mpdf\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"GPL-2.0-only"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Matěj Humpál",
|
||||
"role": "Developer, maintainer"
|
||||
},
|
||||
{
|
||||
"name": "Ian Back",
|
||||
"role": "Developer (retired)"
|
||||
}
|
||||
],
|
||||
"description": "PHP library generating PDF files from UTF-8 encoded HTML",
|
||||
"homepage": "https://mpdf.github.io",
|
||||
"keywords": [
|
||||
"pdf",
|
||||
"php",
|
||||
"utf-8"
|
||||
],
|
||||
"support": {
|
||||
"docs": "http://mpdf.github.io",
|
||||
"issues": "https://github.com/mpdf/mpdf/issues",
|
||||
"source": "https://github.com/mpdf/mpdf"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://www.paypal.me/mpdf",
|
||||
"type": "custom"
|
||||
}
|
||||
],
|
||||
"time": "2023-11-07T13:52:14+00:00"
|
||||
},
|
||||
{
|
||||
"name": "mpdf/psr-http-message-shim",
|
||||
"version": "1.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/mpdf/psr-http-message-shim.git",
|
||||
"reference": "3206e6b80b6d2479e148ee497e9f2bebadc919db"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/mpdf/psr-http-message-shim/zipball/3206e6b80b6d2479e148ee497e9f2bebadc919db",
|
||||
"reference": "3206e6b80b6d2479e148ee497e9f2bebadc919db",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"psr/http-message": "^1.0"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Mpdf\\PsrHttpMessageShim\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Mark Dorison",
|
||||
"email": "mark@chromatichq.com"
|
||||
},
|
||||
{
|
||||
"name": "Kristofer Widholm",
|
||||
"email": "kristofer@chromatichq.com"
|
||||
},
|
||||
{
|
||||
"name": "Nigel Cunningham",
|
||||
"email": "nigel.cunningham@technocrat.com.au"
|
||||
}
|
||||
],
|
||||
"description": "Shim to allow support of different psr/message versions.",
|
||||
"support": {
|
||||
"issues": "https://github.com/mpdf/psr-http-message-shim/issues",
|
||||
"source": "https://github.com/mpdf/psr-http-message-shim/tree/1.0.0"
|
||||
},
|
||||
"time": "2023-09-01T05:59:47+00:00"
|
||||
},
|
||||
{
|
||||
"name": "mpdf/psr-log-aware-trait",
|
||||
"version": "v3.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/mpdf/psr-log-aware-trait.git",
|
||||
"reference": "a633da6065e946cc491e1c962850344bb0bf3e78"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/mpdf/psr-log-aware-trait/zipball/a633da6065e946cc491e1c962850344bb0bf3e78",
|
||||
"reference": "a633da6065e946cc491e1c962850344bb0bf3e78",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"psr/log": "^3.0"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Mpdf\\PsrLogAwareTrait\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Mark Dorison",
|
||||
"email": "mark@chromatichq.com"
|
||||
},
|
||||
{
|
||||
"name": "Kristofer Widholm",
|
||||
"email": "kristofer@chromatichq.com"
|
||||
}
|
||||
],
|
||||
"description": "Trait to allow support of different psr/log versions.",
|
||||
"support": {
|
||||
"issues": "https://github.com/mpdf/psr-log-aware-trait/issues",
|
||||
"source": "https://github.com/mpdf/psr-log-aware-trait/tree/v3.0.0"
|
||||
},
|
||||
"time": "2023-05-03T06:19:36+00:00"
|
||||
},
|
||||
{
|
||||
"name": "myclabs/deep-copy",
|
||||
"version": "1.11.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/myclabs/DeepCopy.git",
|
||||
"reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
|
||||
"reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.1 || ^8.0"
|
||||
},
|
||||
"conflict": {
|
||||
"doctrine/collections": "<1.6.8",
|
||||
"doctrine/common": "<2.13.3 || >=3,<3.2.2"
|
||||
},
|
||||
"require-dev": {
|
||||
"doctrine/collections": "^1.6.8",
|
||||
"doctrine/common": "^2.13.3 || ^3.2.2",
|
||||
"phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"files": [
|
||||
"src/DeepCopy/deep_copy.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"DeepCopy\\": "src/DeepCopy/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"description": "Create deep copies (clones) of your objects",
|
||||
"keywords": [
|
||||
"clone",
|
||||
"copy",
|
||||
"duplicate",
|
||||
"object",
|
||||
"object graph"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/myclabs/DeepCopy/issues",
|
||||
"source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2023-03-08T13:26:56+00:00"
|
||||
},
|
||||
{
|
||||
"name": "myclabs/php-enum",
|
||||
"version": "1.8.4",
|
||||
|
|
@ -3018,6 +3250,56 @@
|
|||
},
|
||||
"time": "2022-06-14T06:56:20+00:00"
|
||||
},
|
||||
{
|
||||
"name": "paragonie/random_compat",
|
||||
"version": "v9.99.100",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/paragonie/random_compat.git",
|
||||
"reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
|
||||
"reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">= 7"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "4.*|5.*",
|
||||
"vimeo/psalm": "^1"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
|
||||
},
|
||||
"type": "library",
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Paragon Initiative Enterprises",
|
||||
"email": "security@paragonie.com",
|
||||
"homepage": "https://paragonie.com"
|
||||
}
|
||||
],
|
||||
"description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
|
||||
"keywords": [
|
||||
"csprng",
|
||||
"polyfill",
|
||||
"pseudorandom",
|
||||
"random"
|
||||
],
|
||||
"support": {
|
||||
"email": "info@paragonie.com",
|
||||
"issues": "https://github.com/paragonie/random_compat/issues",
|
||||
"source": "https://github.com/paragonie/random_compat"
|
||||
},
|
||||
"time": "2020-10-15T08:29:30+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phenx/php-font-lib",
|
||||
"version": "0.5.4",
|
||||
|
|
@ -4058,6 +4340,78 @@
|
|||
},
|
||||
"time": "2021-12-11T13:40:54+00:00"
|
||||
},
|
||||
{
|
||||
"name": "setasign/fpdi",
|
||||
"version": "v2.6.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Setasign/FPDI.git",
|
||||
"reference": "a6db878129ec6c7e141316ee71872923e7f1b7ad"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/Setasign/FPDI/zipball/a6db878129ec6c7e141316ee71872923e7f1b7ad",
|
||||
"reference": "a6db878129ec6c7e141316ee71872923e7f1b7ad",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"ext-zlib": "*",
|
||||
"php": "^5.6 || ^7.0 || ^8.0"
|
||||
},
|
||||
"conflict": {
|
||||
"setasign/tfpdf": "<1.31"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "~5.7",
|
||||
"setasign/fpdf": "~1.8.6",
|
||||
"setasign/tfpdf": "~1.33",
|
||||
"squizlabs/php_codesniffer": "^3.5",
|
||||
"tecnickcom/tcpdf": "~6.2"
|
||||
},
|
||||
"suggest": {
|
||||
"setasign/fpdf": "FPDI will extend this class but as it is also possible to use TCPDF or tFPDF as an alternative. There's no fixed dependency configured."
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"setasign\\Fpdi\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Jan Slabon",
|
||||
"email": "jan.slabon@setasign.com",
|
||||
"homepage": "https://www.setasign.com"
|
||||
},
|
||||
{
|
||||
"name": "Maximilian Kresse",
|
||||
"email": "maximilian.kresse@setasign.com",
|
||||
"homepage": "https://www.setasign.com"
|
||||
}
|
||||
],
|
||||
"description": "FPDI is a collection of PHP classes facilitating developers to read pages from existing PDF documents and use them as templates in FPDF. Because it is also possible to use FPDI with TCPDF, there are no fixed dependencies defined. Please see suggestions for packages which evaluates the dependencies automatically.",
|
||||
"homepage": "https://www.setasign.com/fpdi",
|
||||
"keywords": [
|
||||
"fpdf",
|
||||
"fpdi",
|
||||
"pdf"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/Setasign/FPDI/issues",
|
||||
"source": "https://github.com/Setasign/FPDI/tree/v2.6.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/setasign/fpdi",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2023-12-11T16:03:32+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/console",
|
||||
"version": "v6.2.10",
|
||||
|
|
@ -7391,65 +7745,6 @@
|
|||
},
|
||||
"time": "2022-09-07T15:32:08+00:00"
|
||||
},
|
||||
{
|
||||
"name": "myclabs/deep-copy",
|
||||
"version": "1.11.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/myclabs/DeepCopy.git",
|
||||
"reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
|
||||
"reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.1 || ^8.0"
|
||||
},
|
||||
"conflict": {
|
||||
"doctrine/collections": "<1.6.8",
|
||||
"doctrine/common": "<2.13.3 || >=3,<3.2.2"
|
||||
},
|
||||
"require-dev": {
|
||||
"doctrine/collections": "^1.6.8",
|
||||
"doctrine/common": "^2.13.3 || ^3.2.2",
|
||||
"phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"files": [
|
||||
"src/DeepCopy/deep_copy.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"DeepCopy\\": "src/DeepCopy/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"description": "Create deep copies (clones) of your objects",
|
||||
"keywords": [
|
||||
"clone",
|
||||
"copy",
|
||||
"duplicate",
|
||||
"object",
|
||||
"object graph"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/myclabs/DeepCopy/issues",
|
||||
"source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2023-03-08T13:26:56+00:00"
|
||||
},
|
||||
{
|
||||
"name": "nunomaduro/collision",
|
||||
"version": "v7.5.0",
|
||||
|
|
|
|||
Binary file not shown.
BIN
public/templateExcel/Valves_Template1.xlsx
Normal file
BIN
public/templateExcel/Valves_Template1.xlsx
Normal file
Binary file not shown.
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
'planning' => [
|
||||
'description' => 'In planning',
|
||||
'text' => 'In planning for 2023'
|
||||
'text' => 'In planning for'
|
||||
],
|
||||
'prepared' => [
|
||||
'description' => 'Prepared',
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
],
|
||||
'finished' => [
|
||||
'description' => 'Finished.',
|
||||
'text' => 'Last projects 2023.'
|
||||
'text' => 'Last projects'
|
||||
],
|
||||
],
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
'planning' => [
|
||||
'description' => 'Em planeamento',
|
||||
'text' => 'Em planeamento de 2023'
|
||||
'text' => 'Em planeamento de'
|
||||
],
|
||||
'prepared' => [
|
||||
'description' => 'Preparadas',
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
],
|
||||
'finished' => [
|
||||
'description' => 'Concluídas',
|
||||
'text' => 'Últimas obras de 2023.'
|
||||
'text' => 'Últimas obras de'
|
||||
],
|
||||
|
||||
],
|
||||
|
|
|
|||
|
|
@ -86,11 +86,12 @@ class="form-control">
|
|||
</div>
|
||||
</div>
|
||||
<!-- row text-center -->
|
||||
<table id="showProjectEquipment1" class="table table-bordered table-striped">
|
||||
<table id="showAllEquipments" class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>ID</th>
|
||||
<th>Tag</th>
|
||||
<th>Descricao</th>
|
||||
<th>Cliente</th>
|
||||
<th>Fabrica</th>
|
||||
<th>Tipo</th>
|
||||
<th>Ações</th>
|
||||
|
|
@ -117,7 +118,7 @@ class="form-control">
|
|||
var dataTables;
|
||||
$(document).ready(function() {
|
||||
|
||||
dataTables = $('#showProjectEquipment1').DataTable({
|
||||
dataTables = $('#showAllEquipments').DataTable({
|
||||
responsive: true,
|
||||
processing: true,
|
||||
serverSide: true,
|
||||
|
|
@ -132,21 +133,26 @@ class="form-control">
|
|||
d.receiveEquipmentsType = $('#tipo_valvulasList').val();
|
||||
}
|
||||
},
|
||||
columns: [{
|
||||
data: 'equipment_id',
|
||||
name: 'equipment_id'
|
||||
},
|
||||
columns: [
|
||||
{
|
||||
data: 'equipment_tag',
|
||||
name: 'equipment_tag'
|
||||
},
|
||||
{
|
||||
data: 'unit_id',
|
||||
name: 'unit_id'
|
||||
data: 'equipment_description',
|
||||
name: 'equipment_description'
|
||||
},
|
||||
{
|
||||
data: 'equipment_type_id',
|
||||
name: 'equipment_type_id'
|
||||
data: 'client_name',
|
||||
name: 'client_name'
|
||||
},
|
||||
{
|
||||
data: 'unit_name',
|
||||
name: 'unit_name'
|
||||
},
|
||||
{
|
||||
data: 'equipment_type_name',
|
||||
name: 'equipment_type_name'
|
||||
},
|
||||
{
|
||||
data: 'action',
|
||||
|
|
|
|||
|
|
@ -36,7 +36,8 @@
|
|||
<span
|
||||
class="info-box-number">{{ $CompanyProject->where('order_project', 1)->count() }}</span>
|
||||
<span class="progress-description">
|
||||
{{ __('messages.dashboard.planning.text') }}
|
||||
{{ __('messages.dashboard.planning.text') }} {{ now()->year }}.
|
||||
|
||||
</span>
|
||||
</div>
|
||||
<!-- /.info-box-content -->
|
||||
|
|
@ -157,7 +158,7 @@ class="btn btn-tool">
|
|||
<span
|
||||
class="info-box-number">{{ $CompanyProject->where('order_project', 4)->count() }}</span>
|
||||
<span class="progress-description">
|
||||
{{__('messages.dashboard.finished.text')}}
|
||||
{{__('messages.dashboard.finished.text')}} {{ now()->year }}.
|
||||
</span>
|
||||
</div>
|
||||
<!-- /.info-box-content -->
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
@if (count($receiveElementalTasks['geral']) > 0)
|
||||
<div class="col-sm-6">
|
||||
<div class="col-sm">
|
||||
<div class="card card-success">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title">Tarefas Gerais</h3>
|
||||
|
|
@ -51,10 +51,10 @@
|
|||
</div>
|
||||
@endif
|
||||
|
||||
<div class="col-sm-6">
|
||||
<div class="col-sm">
|
||||
<div class="row">
|
||||
@if (count($receiveElementalTasks['3']) > 0)
|
||||
<div class="col-sm-12">
|
||||
<div class="col-sm">
|
||||
<div class="card card-primary collapsed-card">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title">
|
||||
|
|
@ -67,22 +67,39 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
@foreach ($receiveElementalTasks['3'] as $taskId => $generalTasks)
|
||||
<p>{{ $generalTasks['code'] }} -
|
||||
{{ $generalTasks['description'] }}
|
||||
<input type="hidden" name="3[{{ $taskId }}]"
|
||||
|
||||
{{-- @foreach ($receiveElementalTasks['3'] as $taskId => $generalTasks)
|
||||
<p><input type="hidden" name="3[{{ $taskId }}]"
|
||||
value="off">
|
||||
<input type="checkbox" value="on"
|
||||
name="3[{{ $taskId }}]">
|
||||
{{ $generalTasks['code'] }} -
|
||||
{{ $generalTasks['description'] }}
|
||||
|
||||
</p>
|
||||
@endforeach --}}
|
||||
@foreach ($receiveElementalTasks['3'] as $taskId => $generalTasks)
|
||||
<p>
|
||||
<input type="hidden" name="3[{{ $taskId }}]"
|
||||
value="off">
|
||||
<input type="checkbox" value="on"
|
||||
name="3[{{ $taskId }}]" class="taskCheckbox">
|
||||
<!-- Adicione a classe aqui -->
|
||||
{{ $generalTasks['code'] }} -
|
||||
{{ $generalTasks['description'] }}
|
||||
</p>
|
||||
@endforeach
|
||||
<p>
|
||||
<input type="checkbox" id="selectAll">
|
||||
<label for="selectAll">Selecionar Todos</label>
|
||||
</p>
|
||||
</div> {{-- ./card-body --}}
|
||||
</div>
|
||||
</div> {{-- ./col-sm-12 --}}
|
||||
@endif
|
||||
|
||||
@if (count($receiveElementalTasks['2']) > 0)
|
||||
<div class="col-sm-12">
|
||||
<div class="col-sm">
|
||||
<div class="card card-primary collapsed-card">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title">
|
||||
|
|
@ -110,7 +127,7 @@
|
|||
@endif
|
||||
|
||||
@if (count($receiveElementalTasks['1']) > 0)
|
||||
<div class="col-sm-12">
|
||||
<div class="col-sm">
|
||||
<div class="card card-primary collapsed-card">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title">
|
||||
|
|
@ -138,7 +155,7 @@
|
|||
@endif
|
||||
|
||||
@if (count($receiveAllFurtherTasks) > 0)
|
||||
<div class="col-sm-12">
|
||||
<div class="col-sm">
|
||||
<div class="card card-info collapsed-card">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title">
|
||||
|
|
@ -166,9 +183,6 @@
|
|||
</div>
|
||||
@endif
|
||||
|
||||
{{-- @dump($receiveAllFurtherTasks) --}}
|
||||
|
||||
|
||||
</div>{{-- ./row --}}
|
||||
|
||||
</div> {{-- ./col-sm-6 --}}
|
||||
|
|
@ -180,40 +194,60 @@
|
|||
</div>
|
||||
{{-- Modal-body --}}
|
||||
<div class="modal-footer justify-content-between">
|
||||
<input type="submit" class="btn btn-success" value="Guardar">
|
||||
<button type="button" class="btn btn-secondary" data-dismiss="modal">Fechar</button>
|
||||
<input type="submit" class="btn btn-success" value="Guardar">
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{-- Scrip para assim que entrar na modal, ele verifica quais as tarefas ja associadas a essa Ws e mostra nas checkbox como checked --}}
|
||||
|
||||
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
$('.open-modal').click(function(e) {
|
||||
e.preventDefault();
|
||||
|
||||
var WorkstationId = $(this).data('workstation-id');
|
||||
|
||||
$.ajax({
|
||||
url: '/api/receveTasksWorkstationPlanning/' + WorkstationId,
|
||||
method: 'GET',
|
||||
success: function(data) {
|
||||
console.log(data.workstationsAssociationTasks);
|
||||
|
||||
data.workstationsAssociationTasks.forEach(function(item) {
|
||||
// Seleciona o checkbox com nome "3[taskId]" e marca como selecionado
|
||||
$('input[name="1[' + item.elemental_tasks_id + ']"]').prop('checked', true);
|
||||
$('input[name="2[' + item.elemental_tasks_id + ']"]').prop('checked', true);
|
||||
$('input[name="3[' + item.elemental_tasks_id + ']"]').prop('checked', true);
|
||||
$('input[name="generalTasks[' + item.elemental_tasks_id + ']"]').prop('checked', true);
|
||||
$('input[name="FurtherTasks[' + item.further_tasks_id + ']"]').prop('checked', true);
|
||||
|
||||
});
|
||||
}
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
// Quando o estado da checkbox "Selecionar Todos" mudar
|
||||
document.getElementById('selectAll').addEventListener('change', function(e) {
|
||||
// Define o estado de todas as checkboxes de tarefas para corresponder ao estado da checkbox "Selecionar Todos"
|
||||
const allTaskCheckboxes = document.querySelectorAll('.taskCheckbox');
|
||||
allTaskCheckboxes.forEach(checkbox => {
|
||||
checkbox.checked = this.checked;
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
{{-- Scrip para assim que entrar na modal, ele verifica quais as tarefas ja associadas a essa Ws e mostra nas checkbox como checked --}}
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
$('.open-modal').click(function(e) {
|
||||
e.preventDefault();
|
||||
|
||||
var WorkstationId = $(this).data('workstation-id');
|
||||
|
||||
$.ajax({
|
||||
url: '/api/receveTasksWorkstationPlanning/' + WorkstationId,
|
||||
method: 'GET',
|
||||
success: function(data) {
|
||||
console.log(data.workstationsAssociationTasks);
|
||||
|
||||
data.workstationsAssociationTasks.forEach(function(item) {
|
||||
// Seleciona o checkbox com nome "3[taskId]" e marca como selecionado
|
||||
$('input[name="1[' + item.elemental_tasks_id + ']"]').prop(
|
||||
'checked', true);
|
||||
$('input[name="2[' + item.elemental_tasks_id + ']"]').prop(
|
||||
'checked', true);
|
||||
$('input[name="3[' + item.elemental_tasks_id + ']"]').prop(
|
||||
'checked', true);
|
||||
$('input[name="generalTasks[' + item.elemental_tasks_id +
|
||||
']"]').prop('checked', true);
|
||||
$('input[name="FurtherTasks[' + item.further_tasks_id +
|
||||
']"]').prop('checked', true);
|
||||
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -53,9 +53,13 @@
|
|||
<div class="form-group col-sm-6">
|
||||
<label>{{ __('messages.createProject.ispt_project_number') }}<b
|
||||
style="color:red">*</b></label>
|
||||
<input type="number" name="n_project_ispt" class="form-control"
|
||||
{{-- <input type="number" name="n_project_ispt" class="form-control"
|
||||
placeholder="{{ __('messages.createProject.ispt_project_number') }}…"
|
||||
required> --}}
|
||||
<input type="number" name="n_project_ispt" class="form-control" data-type="ispt"
|
||||
placeholder="{{ __('messages.createProject.ispt_project_number') }}…"
|
||||
required>
|
||||
<div id="project-number-exists-ispt"></div>
|
||||
</div>
|
||||
</div> <!-- /Row -->
|
||||
|
||||
|
|
@ -100,38 +104,53 @@
|
|||
<div class="form-group col-sm" id="installationField" hidden>
|
||||
<label>{{ __('messages.createProject.select_plant.plant') }} <b
|
||||
style="color:red">*</b></label>
|
||||
<select class="form-control" name="installation_id" id="installationSelect" required>
|
||||
<select class="form-control" name="installation_id" id="installationSelect"
|
||||
required>
|
||||
<!-- As opções de instalação serão preenchidas dinamicamente -->
|
||||
</select>
|
||||
</div>
|
||||
|
||||
</div> <!-- /Row -->
|
||||
|
||||
<!-- Criar uma nova instalacao / Empresa -->
|
||||
<div class="row" id="new_company_div">
|
||||
<!-- Vai ser a criacao do Projecto -->
|
||||
|
||||
{{-- Nao vai ser implementado (AINDA) pois retirar se ser mais complexo devido a criacao de um novo User, nao parece valer a pena tentar criar nesta parte --}}
|
||||
{{-- <div class="form-group col-sm" id="new_company_input">
|
||||
<label>Nova Empresa</label>
|
||||
<input type="text" class="form-control" name="new_company"
|
||||
placeholder="Nova Empresa…">
|
||||
</div> --}}
|
||||
|
||||
<!-- Selecionar ou criar instalacoes -->
|
||||
<div class="form-group col-sm">
|
||||
<label>{{ __('messages.createProject.select_plant.new_plant') }} :</label>
|
||||
<input type="text" id="new_company_name" class="form-control"
|
||||
name="new_company_name"
|
||||
placeholder="{{ __('messages.createProject.select_plant.new_plant') }}…">
|
||||
<div class="card card-danger" id="new_company_div">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title">Nova Instalação</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="row">
|
||||
<!-- Nome Nova Instalação -->
|
||||
<div class="form-group col-sm">
|
||||
<label>{{ __('messages.createProject.select_plant.new_plant') }} :</label>
|
||||
<input type="text" id="new_company_name" class="form-control"
|
||||
name="new_company_name"
|
||||
placeholder="{{ __('messages.createProject.select_plant.new_plant') }}…">
|
||||
</div>
|
||||
|
||||
<div class="form-group col-sm">
|
||||
<label>{{ __('messages.createProject.select_plant.plant_address') }}</label>
|
||||
<input type="text" class="form-control" name="new_company_address"
|
||||
placeholder="{{ __('messages.createProject.select_plant.plant_address') }}…">
|
||||
<!-- Morada Nova Instalação -->
|
||||
<div class="form-group col-sm">
|
||||
<label>{{ __('messages.createProject.select_plant.plant_address') }}</label>
|
||||
<input type="text" class="form-control" name="new_company_address"
|
||||
placeholder="{{ __('messages.createProject.select_plant.plant_address') }}…">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-group col-sm">
|
||||
<label>Selecione Qtn Fábricas:</label>
|
||||
<select id="selectFactoryCount" class="form-control">
|
||||
<option value="">Selecione a quantidade</option>
|
||||
<option value="1">1</option>
|
||||
<option value="2">2</option>
|
||||
<option value="3">3</option>
|
||||
<!-- Adicione mais opções conforme necessário -->
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Container para os inputs dinâmicos -->
|
||||
<div id="factoriesInputsContainer"></div>
|
||||
</div>
|
||||
</div> <!-- /Row -->
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="row">
|
||||
|
|
@ -140,9 +159,14 @@
|
|||
<div class="form-group col-sm-6">
|
||||
<label>{{ __('messages.createProject.company_project_number') }}<b
|
||||
style="color:red">*</b></label>
|
||||
{{-- <input type="number" name="project_company_number" class="form-control"
|
||||
placeholder="{{ __('messages.createProject.company_project_number') }}…"
|
||||
required> --}}
|
||||
<input type="number" name="project_company_number" class="form-control"
|
||||
data-type="company"
|
||||
placeholder="{{ __('messages.createProject.company_project_number') }}…"
|
||||
required>
|
||||
<div id="project-number-exists-company"></div>
|
||||
</div>
|
||||
|
||||
<!-- Data de Início do Projeto -->
|
||||
|
|
@ -161,7 +185,7 @@ class="form-control float-right" required>
|
|||
|
||||
<div class="card-footer">
|
||||
<div class="float-right">
|
||||
<button type="submit"
|
||||
<button type="submit" id="submitButton"
|
||||
class="btn btn-primary">{{ __('messages.buttons.save') }}</button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -183,6 +207,27 @@ class="btn btn-primary">{{ __('messages.buttons.save') }}</button>
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
$('#selectFactoryCount').change(function() {
|
||||
var numberOfFactories = $(this).val(); // Quantidade selecionada
|
||||
var container = $('#factoriesInputsContainer');
|
||||
container.empty(); // Limpa os inputs anteriores
|
||||
|
||||
// Gera novos inputs com base na quantidade selecionada
|
||||
for (var i = 1; i <= numberOfFactories; i++) {
|
||||
container.append(`
|
||||
<div class="form-group">
|
||||
<label for="factoryName${i}">Nome da Fábrica ${i}</label>
|
||||
<input type="text" id="factoryName${i}" name="factoryNames[]" class="form-control" placeholder="Nome da Fábrica ${i}">
|
||||
</div>
|
||||
`);
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
{{-- <script>
|
||||
$(document).ready(function() {
|
||||
|
||||
|
|
@ -295,6 +340,65 @@ class="btn btn-primary">{{ __('messages.buttons.save') }}</button>
|
|||
});
|
||||
</script> --}}
|
||||
|
||||
<script>
|
||||
// Função para atualizar o estado do botão de envio com base na validade dos inputs
|
||||
function updateSubmitButtonState() {
|
||||
// Verifica se ambos os inputs possuem a classe 'valid-input', o que indica que são válidos
|
||||
var allValid = $('.valid-input').length === 2;
|
||||
// Habilita ou desabilita o botão de envio ('#submitButton') com base na validade dos inputs
|
||||
$('#submitButton').prop('disabled', !allValid);
|
||||
}
|
||||
|
||||
// Aguarda o documento HTML estar completamente carregado para executar o script
|
||||
$(document).ready(function() {
|
||||
// Adiciona um ouvinte de evento 'input' para cada input especificado
|
||||
$('input[name="n_project_ispt"], input[name="project_company_number"]').on('input', function() {
|
||||
// Armazena o valor atual do input
|
||||
var number = $(this).val();
|
||||
// Armazena o tipo do input, determinado pelo atributo 'data-type'
|
||||
var type = $(this).data('type');
|
||||
|
||||
// Verifica se o input não está vazio
|
||||
if (number.length > 0) {
|
||||
// Realiza uma requisição AJAX para verificar se o número já existe no banco de dados
|
||||
$.ajax({
|
||||
url: '{{ route('checkProjectIsptNumber') }}',
|
||||
type: 'GET',
|
||||
data: {
|
||||
number: number,
|
||||
type: type
|
||||
},
|
||||
success: function(response) {
|
||||
// Se o número já existir, marca o input como inválido
|
||||
if (response.exists) {
|
||||
$(this).css('border', '2px solid red').removeClass(
|
||||
'valid-input').addClass('invalid-input');
|
||||
$('#project-number-exists-' + type).text('Número já existe')
|
||||
.css('color', 'red');
|
||||
} else {
|
||||
// Se o número não existir, marca o input como válido
|
||||
$(this).css('border', '2px solid green').removeClass(
|
||||
'invalid-input').addClass('valid-input');
|
||||
$('#project-number-exists-' + type).text('');
|
||||
}
|
||||
// Chama a função para atualizar o estado do botão de envio
|
||||
updateSubmitButtonState();
|
||||
}.bind(
|
||||
this
|
||||
) // Garante que 'this' se refere ao input dentro da função de sucesso
|
||||
});
|
||||
} else {
|
||||
// Se o input estiver vazio, remove qualquer marcação de validade/invalidade
|
||||
$(this).css('border', '1px solid #ced4da').removeClass('valid-input').removeClass(
|
||||
'invalid-input');
|
||||
$('#project-number-exists-' + type).text('');
|
||||
// Atualiza o estado do botão de envio
|
||||
updateSubmitButtonState();
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
// Esconde os elementos no carregamento da página
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
<div class="col-sm-6">
|
||||
<ol class="breadcrumb float-sm-right">
|
||||
<li class="breadcrumb-item"><a href="{{ route('home') }}">Dashboard</a></li>
|
||||
<li class="breadcrumb-item"><a href="./preparadas.html">Preparadas</a></li>
|
||||
{{-- <li class="breadcrumb-item"><a href="{{ route('')}}./preparadas.html">Preparadas</a></li> --}}
|
||||
<li class="breadcrumb-item active">{{ $numberProject->company_project_description }}</li>
|
||||
</ol>
|
||||
</div><!-- /.col -->
|
||||
|
|
@ -97,8 +97,7 @@
|
|||
da Obra</a>
|
||||
</div>
|
||||
<div class="col-sm-6" id="BotaoArticulado">
|
||||
<a href="#" type="button"
|
||||
class="btn btn-block bg-primary btn-lg">Articulado</a>
|
||||
<a href="#" type="button" class="btn btn-block bg-primary btn-lg">Articulado</a>
|
||||
</div>
|
||||
<div class="col-sm-6" id="BotaoPostosDeTrabalho">
|
||||
<a href="#" type="button" class="btn btn-block bg-primary btn-lg">Postos de
|
||||
|
|
@ -127,7 +126,7 @@ class="btn btn-block bg-primary btn-lg">Articulado</a>
|
|||
<td>{{ $numberProject->company_project_description }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>N.ºobra ISPT:</td>
|
||||
<td>N.º obra ISPT:</td>
|
||||
<td>{{ $numberProject->project_ispt_number }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
@ -139,7 +138,7 @@ class="btn btn-block bg-primary btn-lg">Articulado</a>
|
|||
<td>Cliente1</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>N.ºobra Cliente :</td>
|
||||
<td>N.º obra Cliente :</td>
|
||||
<td>{{ $numberProject->project_company_number }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
@ -176,6 +175,39 @@ class="btn btn-block bg-primary btn-lg">Articulado</a>
|
|||
</form>
|
||||
<!-- /.Card box criar instalção -->
|
||||
|
||||
<a style="margin: 10px" data-bs-toggle="modal" data-bs-target="#exampleModal"
|
||||
class="btn btn-primary float-right">Alterar para Execussao</a>
|
||||
|
||||
|
||||
<!-- Modal -->
|
||||
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel"
|
||||
aria-hidden="true">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h3 class="modal-title fs-5" id="exampleModalLabel">Confirmação de alteração para
|
||||
execução</h3>
|
||||
</div>
|
||||
<form
|
||||
action="{{ route('changeStateProject', ['projectId' => $numberProject->company_projects_id]) }}">
|
||||
@csrf
|
||||
<div class="modal-body">
|
||||
<p>
|
||||
A inicialização está planeada para {{ $numberProject->date_started }} Ao
|
||||
prosseguir, irá alterar o estado para execução imediata. Confirma a operação?
|
||||
</p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-secondary"
|
||||
data-bs-dismiss="modal">Close</button>
|
||||
<button type="submit" class="btn btn-primary">Alterar</button>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Card box criar equipamentos -->
|
||||
<form>
|
||||
<!-- Articulado -->
|
||||
|
|
@ -279,17 +311,18 @@ class="form-control">
|
|||
<td>{{ $equipment->equipment_tag }}</td>
|
||||
<td>{{ $equipment->equipment_type_id }}</td>
|
||||
<td>{{ $equipment->unit->unit_name }}</td>
|
||||
<td><a href="{{ route('showDetailsEquipmentForQrCode', ['equipmentId' => $equipment->equipment_id, 'projectId' => $numberProject]) }}"><i class="fa-solid fa-file-pdf fa-2x"></i></a>
|
||||
<td><a
|
||||
href="{{ route('showDetailsEquipmentForQrCode', ['equipmentId' => $equipment->equipment_id, 'projectId' => $numberProject]) }}"><i
|
||||
class="fa-solid fa-file-pdf fa-2x"></i></a>
|
||||
</td>
|
||||
{{-- <td>{{ $equipment->equipmentAssociationAmbit->ambitsEquipment->ambits_description }} --}}
|
||||
</td>
|
||||
{{-- <td><a href="#" data-toggle="modal"
|
||||
data-target="#yourModalId-{{ $equipment->equipment_id }}"
|
||||
data-equipment-id=""><i class="fa-solid fa-eye"
|
||||
style="color:rgb(62, 62, 62)"></i></a></td>
|
||||
--}}
|
||||
style="color:rgb(62, 62, 62)"></i></a></td> --}}
|
||||
|
||||
{{-- @livewire('preparadas.show-qrcode-and-detalls-equipment', ['equipment' => $equipment], key($equipment->equipment_id)) --}}
|
||||
<!--@livewire('preparadas.show-qrcode-and-detalls-equipment', ['equipment' => $equipment], key($equipment->equipment_id)) -->
|
||||
</tr>
|
||||
{{-- Por algum motivo se tirar esta modal, ele nao encontra o qrcode do componente ?????????????? WHY????????? --}}
|
||||
<div class="modal fade"
|
||||
|
|
@ -388,9 +421,9 @@ function printCard() {
|
|||
<div class="card-footer">
|
||||
<!-- Botao para criar os Multiplos Qrcodes nas Folhas -->
|
||||
<!-- <div class="float-left">
|
||||
<button class="btn btn-outline-secondary " onclick="printCard()">Imprimir Códigos
|
||||
QR</button>
|
||||
</div> -->
|
||||
<button class="btn btn-outline-secondary " onclick="printCard()">Imprimir Códigos
|
||||
QR</button>
|
||||
</div> -->
|
||||
<div class="float-right">
|
||||
<button type="button" class="btn btn-primary" data-toggle="modal"
|
||||
data-target="#ModalTransferForArticulated">
|
||||
|
|
@ -418,8 +451,8 @@ function printCard() {
|
|||
|
||||
<div class="card-tools">
|
||||
<!-- <button type="button" class="btn btn-tool" data-card-widget="collapse">
|
||||
<i class="fas fa-plus"></i>
|
||||
</button> -->
|
||||
<i class="fas fa-plus"></i>
|
||||
</button> -->
|
||||
</div>
|
||||
<!-- /.card-tools -->
|
||||
</div>
|
||||
|
|
@ -665,7 +698,7 @@ class="checkboxChoseTasksOficesCV"
|
|||
</div>
|
||||
</div>
|
||||
<!-- /.modal-content --
|
||||
/.modal-dialog -->
|
||||
/.modal-dialog -->
|
||||
</div>
|
||||
<!-- /.modal remover-->
|
||||
|
||||
|
|
@ -767,30 +800,31 @@ class="checkboxChoseTasksOficesCV"
|
|||
|
||||
<script type="Text/javascript">
|
||||
$(document).ready(function() {
|
||||
$('#TablePreparedProjectWorkstation').DataTable({
|
||||
autoWidth: false,
|
||||
processing: true,
|
||||
serverSide: true,
|
||||
ajax: {
|
||||
url: '/api/receiveWorkstationProject/' + $('#receiveNumberProject').val()
|
||||
},
|
||||
columns: [{
|
||||
data: 'name_workstations',
|
||||
name: 'name_workstations'
|
||||
$('#TablePreparedProjectWorkstation').DataTable({
|
||||
autoWidth: false,
|
||||
processing: true,
|
||||
serverSide: true,
|
||||
ajax: {
|
||||
url: '/api/receiveWorkstationProject/' + $('#receiveNumberProject').val()
|
||||
},
|
||||
{
|
||||
data: 'nomenclature_workstation',
|
||||
name: 'nomenclature_workstation'
|
||||
},
|
||||
{
|
||||
data: 'workstations_Association_Tasks',
|
||||
name: 'workstations_Association_Tasks'
|
||||
}
|
||||
]
|
||||
})
|
||||
})
|
||||
columns: [{
|
||||
data: 'name_workstations',
|
||||
name: 'name_workstations'
|
||||
},
|
||||
{
|
||||
data: 'nomenclature_workstation',
|
||||
name: 'nomenclature_workstation'
|
||||
},
|
||||
{
|
||||
data: 'workstations_Association_Tasks',
|
||||
name: 'workstations_Association_Tasks'
|
||||
}
|
||||
]
|
||||
})
|
||||
})
|
||||
|
||||
</script>
|
||||
|
||||
</script>
|
||||
|
||||
{{-- Script para funcionar com dataTables yajra, futura implementacao com livewire --}}
|
||||
{{-- <script>
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@
|
|||
</div>
|
||||
|
||||
<fieldset class="content">
|
||||
|
||||
<div class="container-fluid">
|
||||
<div class="card card-primary" id="CardDetalhes">
|
||||
<div class="card-header bg-primary text-white">
|
||||
|
|
@ -29,7 +30,7 @@
|
|||
|
||||
@csrf
|
||||
|
||||
<input type="hidden" name="projectId" value="{{$projects->company_projects_id}}">
|
||||
<input type="hidden" name="projectId" value="{{ $projects->company_projects_id }}">
|
||||
<input type="hidden" name="statusProject" value="edit">
|
||||
<div class="row">
|
||||
<div class="form-group col-sm-6">
|
||||
|
|
@ -40,9 +41,14 @@
|
|||
</div>
|
||||
<div class="form-group col-sm-6">
|
||||
<label>Nº. obra ISPT</label>
|
||||
<input type="number" name="n_project_ispt" class="form-control"
|
||||
{{-- <input type="number" name="n_project_ispt" class="form-control"
|
||||
placeholder="Nº. obra ISPT…"
|
||||
value="{{ $projects->project_ispt_number }}">
|
||||
value="{{ $projects->project_ispt_number }}"> --}}
|
||||
<input type="number" name="n_project_ispt" class="form-control" data-type="ispt"
|
||||
placeholder="Nº. obra ISPT…" value="{{ $projects->project_ispt_number }}">
|
||||
|
||||
<div id="project-number-exists-ispt"></div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
|
|
@ -64,7 +70,8 @@
|
|||
|
||||
<div class="form-group col-sm-6" id="companyField">
|
||||
<label>Empresa Obra</label>
|
||||
<input type="text" name="user_id" class="form-control" value="{{$projects->userName}}" readonly>
|
||||
<input type="text" name="user_id" class="form-control"
|
||||
value="{{ $projects->userName }}" readonly>
|
||||
|
||||
</div>
|
||||
|
||||
|
|
@ -124,9 +131,13 @@
|
|||
<div class="row">
|
||||
<div class="form-group col-sm-6">
|
||||
<label>Nº. de obra Empresa</label>
|
||||
<input type="number" name="project_company_number" class="form-control"
|
||||
{{-- <input type="number" name="project_company_number" class="form-control"
|
||||
placeholder="Nº. de obra cliente…"
|
||||
value="{{ $projects->project_company_number }}"> --}}
|
||||
<input type="number" name="project_company_number" class="form-control"
|
||||
data-type="company" placeholder="Nº. de obra cliente…"
|
||||
value="{{ $projects->project_company_number }}">
|
||||
<div id="project-number-exists-company"></div>
|
||||
</div>
|
||||
|
||||
<!-- Date -->
|
||||
|
|
@ -165,24 +176,119 @@ class="form-control float-right">
|
|||
|
||||
<div class="card-footer">
|
||||
<div class="float-right">
|
||||
<button type="submit" class="btn btn-primary">Guardar</button>
|
||||
<button type="submit" class="btn btn-primary"
|
||||
id="submitButton">Atualizar</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
{{-- Model --}}
|
||||
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel"
|
||||
aria-hidden="true">
|
||||
<div class="modal-dialog">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h2 class="modal-title fs-5" id="exampleModalLabel">Confirmação de eliminação
|
||||
da obra</h2>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<form
|
||||
action="{{ route('deleteProject', ['projectId' => $projects->company_projects_id]) }}">
|
||||
@csrf
|
||||
<input type="hidden" name="">
|
||||
<p>
|
||||
Ao proceder com a eliminação, estará a excluir a obra atual, o que
|
||||
implicará também a remoção dos postos de trabalho associados e a
|
||||
desvinculação dos equipamentos relativos à obra em questão. No entanto,
|
||||
os equipamentos gerados a partir desta não serão eliminados.
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-secondary"
|
||||
data-bs-dismiss="modal">Close</button>
|
||||
<button type="submit" class="btn btn-primary">Apagar</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{-- /.card-body --}}
|
||||
|
||||
</div>
|
||||
<a style="margin: 10px" data-bs-toggle="modal" data-bs-target="#exampleModal"
|
||||
class="btn btn-danger next float-left mt-3">Apagar Obra</a>
|
||||
|
||||
<a style="margin: 10px"" href="{{ route('articulated_2', ['id' => $projects]) }}"
|
||||
class="btn btn-primary next float-right mt-3">Articulado</a>
|
||||
</div>
|
||||
{{-- /.card card-primary --}}
|
||||
<a href="{{ route('articulated_2', ['id' => $projects]) }}" class="btn btn-primary next float-right mt-3">Articulado</a>
|
||||
|
||||
</fieldset>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- SCript para verificar se Numeros ->obra ISPT e obra Empresa, nao podem ser repetidos -->
|
||||
<script>
|
||||
function updateSubmitButtonState() {
|
||||
// Verifica se existe algum input inválido
|
||||
var anyInvalid = $('.invalid-input').length > 0;
|
||||
// Desabilita o botão se houver algum inválido, habilita se não houver
|
||||
$('#submitButton').prop('disabled', anyInvalid);
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
// Define um ouvinte de evento para quando o valor dos inputs muda
|
||||
$('input[name="n_project_ispt"], input[name="project_company_number"]').on('input', function() {
|
||||
var number = $(this).val();
|
||||
var type = $(this).data('type');
|
||||
var projectId = $('input[name="projectId"]').val();
|
||||
|
||||
// Verifica se o input não está vazio
|
||||
if (number.length > 0) {
|
||||
$.ajax({
|
||||
url: '{{ route('checkProjectIsptNumber') }}' + (projectId ? '/' +
|
||||
projectId : ''),
|
||||
type: 'GET',
|
||||
data: {
|
||||
number: number,
|
||||
type: type
|
||||
},
|
||||
success: function(response) {
|
||||
// Se o número já existir e não for do projeto atual, marca como inválido
|
||||
if (response.exists && !response.isCurrentProjectNumber) {
|
||||
$(this).css('border', '2px solid red').addClass('invalid-input')
|
||||
.removeClass('valid-input');
|
||||
$('#project-number-exists-' + type).text('Número já existe')
|
||||
.css('color', 'red');
|
||||
} else {
|
||||
// Se o número não existir ou for do projeto atual, marca como válido
|
||||
$(this).css('border', '2px solid green').addClass('valid-input')
|
||||
.removeClass('invalid-input');
|
||||
$('#project-number-exists-' + type).text('');
|
||||
}
|
||||
updateSubmitButtonState(); // Atualiza o estado do botão
|
||||
}.bind(this)
|
||||
});
|
||||
} else {
|
||||
// Se o campo for limpo, remove qualquer marcação e atualiza o estado do botão
|
||||
$(this).css('border', '1px solid #ced4da').removeClass('invalid-input').removeClass(
|
||||
'valid-input');
|
||||
$('#project-number-exists-' + type).text('');
|
||||
updateSubmitButtonState();
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
|
|
@ -248,7 +354,7 @@ class="form-control float-right">
|
|||
if (selectedInstallation) {
|
||||
// Preencha o valor do campo de endereço com o endereço da instalação selecionada
|
||||
$('#localization_installation_client input').val(selectedInstallation
|
||||
.plant_address);
|
||||
.plant_address);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
|
|
@ -7,138 +8,65 @@
|
|||
<title>Document</title>
|
||||
|
||||
<style>
|
||||
body {
|
||||
font-family: 'Arial', sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
.box-pai {
|
||||
width: 65mm;
|
||||
height: 95mm;
|
||||
border: 3px solid #09255C;
|
||||
}
|
||||
.card-to-print {
|
||||
max-width: 3391px; /* 90cm */
|
||||
max-height: 1512px; /* 40cm */
|
||||
|
||||
.row {
|
||||
background-color: #09255C;
|
||||
height: 11mm;
|
||||
}
|
||||
|
||||
.col {
|
||||
width: 32.50%;
|
||||
float: left;
|
||||
|
||||
}
|
||||
|
||||
.col-center{
|
||||
padding-top: 4mm;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
||||
.circle {
|
||||
width: 10mm;
|
||||
height: 10mm;
|
||||
/* border: 1px solid blue; */
|
||||
background-color: #fff;
|
||||
margin: auto;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
position: relative;
|
||||
padding: 20px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
#circulo {
|
||||
width: 20px; /*Largura do círculo */
|
||||
height: 20px; /* Altura do círculo */
|
||||
background-color: red; /* Cor do círculo */
|
||||
border-radius: 50%; /* Faz com que os cantos sejam totalmente arredondados, criando um círculo */
|
||||
/* position: absolute; */
|
||||
/* top: 100px; */
|
||||
/* padding-top: 10px; */
|
||||
/* left: 20px; */
|
||||
/* top: 30%; */
|
||||
/* transform: translateY(50%); */
|
||||
.img-logo{
|
||||
padding-left: 11mm;
|
||||
width: 10mm;
|
||||
height: 10mm;
|
||||
}
|
||||
|
||||
.top {
|
||||
/* Estilos para a div top */
|
||||
}
|
||||
|
||||
.custom-row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.col-sm {
|
||||
flex: 0 0 auto;
|
||||
width: 33.33333%;
|
||||
text-align: center;
|
||||
}
|
||||
.text-center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="card-to-print">
|
||||
<div class="top">
|
||||
</div>
|
||||
|
||||
<div class="custom-row">
|
||||
{{-- <div class="col-sm text-center" style="position: relative; background-color: #09255C;">
|
||||
<div id="circulo"></div>
|
||||
<!-- Restante do seu HTML -->
|
||||
</div> --}}
|
||||
<div class="col-sm text-center"
|
||||
style="display: flex; align-items: center; justify-content: center; background-color: #09255C; position: relative;">
|
||||
<div id="circulo"></div>
|
||||
{{-- <img style="width:50px;"
|
||||
src="{{ asset('img/ispt/4.0/Ispt4.0_Símbolo_Fundo_Azul-Marinho@2x-100.jpg') }}"
|
||||
alt="imagem nao encontrada"> --}}
|
||||
<div style="line-height: 2.5; color: white;">ISPT 4.0</div>
|
||||
<div class="box-pai">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="circle"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="custom-row" style="margin-top: 10px;">
|
||||
|
||||
<div class="col-sm qrcode-output" style="padding-left: 13px;"
|
||||
Qr-Code
|
||||
{{-- data-equipment-id="{{ $associatedEquipment->id }}" --}}
|
||||
{{-- data-component-tag="{{ $associatedEquipment->component_tag }}"> --}}
|
||||
<div class="col col-center">
|
||||
ISPT 4.0
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="custom-row">
|
||||
<div class="col-sm text-center">
|
||||
<div style="margin-bottom: 13px;font-size: 1.1rem;color: #00B0EA">
|
||||
<b>TAG</b>
|
||||
<div class="col">
|
||||
<img class="img-logo"
|
||||
src="{{ public_path('/img/ispt/4.0/Ispt4.0_Símbolo_Fundo_Azul-Marinho@2x-100.jpg') }}"
|
||||
alt="Logo Esquerdo">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{-- Serve para receber o conteudo que tem apos a @ --}}
|
||||
<div class="custom-row">
|
||||
<div class="col-sm text-center">
|
||||
<div style="font-size: 1.1rem;color: #00B0EA">
|
||||
{{ $detailsEquipment->equipment_tag }}
|
||||
Parte do Equipamento (Corpo)
|
||||
{{-- {{ explode('@', $associatedEquipment->component_tag)[1] }} --}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="custom-row">
|
||||
<div class="col-sm text-center">
|
||||
<h6 style="line-height: 2.5;margin-block-end: 0;color: #00B0EA;">
|
||||
Tipo de Equipamento
|
||||
{{-- {{ $equipment->equipmentType->equipment_type_name }} --}}
|
||||
</h6>
|
||||
</div>
|
||||
<div class="col-sm text-center">
|
||||
<h6 style="line-height: 2.5;margin-block-end: 0; color: #00B0EA;">
|
||||
Fabrica
|
||||
{{-- {{ $equipment->unit->unit_name }} --}}
|
||||
</h6>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{-- Imagens demoram muito a carregar , ver oque da para fazer --}}
|
||||
<div class="custom-row" style="margin-top: 10px;">
|
||||
<div class="col-sm text-center">
|
||||
{{ $detailsEquipment->equipment_tag }}
|
||||
Logo ISPT
|
||||
{{-- <img style="width: 25px;" src="{{ asset('img/ispt/4.0/galpLogo1.png') }}"
|
||||
alt="Imagem nao encontrada galp "> --}}
|
||||
</div>
|
||||
<div class="col-sm text-center">
|
||||
{{ $detailsEquipment->equipment_tag }}
|
||||
Logo Empresa
|
||||
{{-- <img style="width: 20px;"
|
||||
src="{{ asset('img/ispt/4.0/isptLogoVertical.png') }}"
|
||||
alt="Imagem nao contrada Ispt"> --}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,155 @@
|
|||
<!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>
|
||||
body {
|
||||
font-family: 'Arial', sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.card-to-print {
|
||||
width: 65mm;
|
||||
height: 85mm;
|
||||
border: 3px solid blue;
|
||||
}
|
||||
.card-header {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #00B0EA;
|
||||
}
|
||||
|
||||
.box {
|
||||
/* Como nao entende o flex-box, cada box vai pegar metade do conteudo pai */
|
||||
width: 33.33%;
|
||||
float: left;
|
||||
/* padding: 15px 0px 0px 25px; */
|
||||
/* top right bottom left */
|
||||
|
||||
/* margin-bottom: 50%; */
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#circulo {
|
||||
width: 20px;
|
||||
/*Largura do círculo */
|
||||
height: 20px;
|
||||
/* Altura do círculo */
|
||||
background-color: red;
|
||||
/* Cor do círculo */
|
||||
border-radius: 50%;
|
||||
|
||||
}
|
||||
|
||||
</style> --}}
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="box-card">
|
||||
|
||||
|
||||
<div class="card-to-print">
|
||||
<div class="top">
|
||||
</div>
|
||||
|
||||
{{-- <div class="custom-row"> --}}
|
||||
{{-- <div class="col-sm text-center" style="position: relative; background-color: #09255C;">
|
||||
<div id="circulo"></div>
|
||||
<!-- Restante do seu HTML -->
|
||||
</div> --}}
|
||||
<div class="card-header">
|
||||
{{-- style="display: flex; align-items: center; justify-content: center; background-color: #09255C; position: relative;"> --}}
|
||||
<div class="box">
|
||||
<div id="circulo"></div>
|
||||
</div>
|
||||
<div class="box box-text">
|
||||
<div style="line-height: 2.5;">ISPT 4.0</div>
|
||||
</div>
|
||||
<div class="box last-box"">
|
||||
Imagem
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
{{-- <img style="width:50px;"
|
||||
src="{{ asset('img/ispt/4.0/Ispt4.0_Símbolo_Fundo_Azul-Marinho@2x-100.jpg') }}"
|
||||
alt="imagem nao encontrada"> --}}
|
||||
{{-- </div> --}}
|
||||
|
||||
<div class="custom-row" style="margin-top: 10px;">
|
||||
|
||||
<div class="col-sm qrcode-output" style="padding-left: 13px;" Qr-Code {{-- data-equipment-id="{{ $associatedEquipment->id }}" --}}
|
||||
{{-- data-component-tag="{{ $associatedEquipment->component_tag }}"> --}} </div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="custom-row">
|
||||
<div class="col-sm text-center">
|
||||
<div style="margin-bottom: 13px;font-size: 1.1rem;color: #00B0EA">
|
||||
<b>TAG</b>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{-- Serve para receber o conteudo que tem apos a @ --}}
|
||||
<div class="custom-row">
|
||||
<div class="col-sm text-center">
|
||||
<div style="font-size: 1.1rem;color: #00B0EA">
|
||||
{{ $detailsEquipment->equipment_tag }}
|
||||
Parte do Equipamento (Corpo)
|
||||
{{-- {{ explode('@', $associatedEquipment->component_tag)[1] }} --}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="custom-row">
|
||||
<div class="col-sm text-center">
|
||||
<h6 style="line-height: 2.5;margin-block-end: 0;color: #00B0EA;">
|
||||
Tipo de Equipamento
|
||||
{{-- {{ $equipment->equipmentType->equipment_type_name }} --}}
|
||||
</h6>
|
||||
</div>
|
||||
<div class="col-sm text-center">
|
||||
<h6 style="line-height: 2.5;margin-block-end: 0; color: #00B0EA;">
|
||||
Fabrica
|
||||
{{-- {{ $equipment->unit->unit_name }} --}}
|
||||
</h6>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{-- Imagens demoram muito a carregar , ver oque da para fazer --}}
|
||||
<div class="custom-row" style="margin-top: 10px;">
|
||||
<div class="col-sm text-center">
|
||||
{{ $detailsEquipment->equipment_tag }}
|
||||
Logo ISPT
|
||||
{{-- <img style="width: 25px;" src="{{ asset('img/ispt/4.0/galpLogo1.png') }}"
|
||||
alt="Imagem nao encontrada galp "> --}}
|
||||
</div>
|
||||
<div class="col-sm text-center">
|
||||
{{ $detailsEquipment->equipment_tag }}
|
||||
Logo Empresa
|
||||
{{-- <img style="width: 20px;"
|
||||
src="{{ asset('img/ispt/4.0/isptLogoVertical.png') }}"
|
||||
alt="Imagem nao contrada Ispt"> --}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
|
@ -0,0 +1,63 @@
|
|||
<!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>
|
||||
.box-pai {
|
||||
width: 65mm;
|
||||
height: 95mm;
|
||||
border: 1px solid blue;
|
||||
}
|
||||
|
||||
.row {
|
||||
border: 1px solid red;
|
||||
background-color: aqua;
|
||||
font-size: 0;
|
||||
|
||||
}
|
||||
|
||||
.col {
|
||||
border: 1px solid green;
|
||||
width: 32.50%;
|
||||
float: left;
|
||||
|
||||
}
|
||||
|
||||
|
||||
.test {
|
||||
width: 10mm;
|
||||
height: 10mm;
|
||||
border: 1px solid blue;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="box-pai">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="test"></div>
|
||||
</div>
|
||||
<div class="col">
|
||||
ISPT 4.0
|
||||
</div>
|
||||
<div class="col">
|
||||
<img src="{{ $userLogoPath }}" alt="User Logo">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -144,16 +144,10 @@ class="fas fa-minus"></i>
|
|||
<!-- ./Card-header -->
|
||||
<div class="card-body">
|
||||
<!-- Criar tarefa -->
|
||||
<div class="card card-success collapsed-card">
|
||||
<div class="card card-success">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title">Criar Postos de Trabalho</h3>
|
||||
|
||||
<div class="card-tools">
|
||||
<button type="button" class="btn btn-tool" data-card-widget="collapse"><i
|
||||
class="fas fa-plus"></i>
|
||||
</button>
|
||||
</div>
|
||||
<!-- /.card-tools -->
|
||||
</div>
|
||||
<!-- /.card-header -->
|
||||
<div class="card-body">
|
||||
|
|
@ -164,14 +158,15 @@ class="fas fa-plus"></i>
|
|||
<input type="hidden" name="numberProject" value="{{ $numberProject }}">
|
||||
<div style="display: flex; justify-content: space-between;">
|
||||
<div style="display: flex; align-items: center;">
|
||||
<label for="inputName" style="margin-right: 10px;"> Quantidade de Postos
|
||||
Pretendidos :</label>
|
||||
<label for="inputName" style="margin-right: 10px;">
|
||||
Qtd. de Postos pretendidos :
|
||||
</label>
|
||||
<input class="form-control" name="numberWorkstations" type="number"
|
||||
id="numberPosts">
|
||||
</div>
|
||||
<div>
|
||||
<button class="btn btn-success" type="submit" value="Guardar"
|
||||
type="button" style="align-self: flex-end;">Button</button>
|
||||
type="button" style="align-self: flex-end;">Criar</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
|
@ -184,16 +179,16 @@ class="fas fa-plus"></i>
|
|||
<!--/Criar tarefa-->
|
||||
|
||||
<!-- Card Posto de Trabalho -->
|
||||
<div class="card">
|
||||
<div class="card card-danger">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title">Postos da Obra </h3>
|
||||
<h3 class="card-title">Postos da Obra</h3>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="table-responsive">
|
||||
<table id="workstationTable" class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Posto de Trabalho</th>
|
||||
{{-- <th>Posto de Trabalho</th> --}}
|
||||
<th>Nome Posto de Trabalho</th>
|
||||
<th>Detalhes</th>
|
||||
</tr>
|
||||
|
|
@ -201,7 +196,7 @@ class="fas fa-plus"></i>
|
|||
<tbody>
|
||||
@foreach ($listWorkstations as $listWorkstation)
|
||||
<tr>
|
||||
<td>{{ $listWorkstation->name_workstations }}</td>
|
||||
{{-- <td>{{ $listWorkstation->name_workstations }}</td> --}}
|
||||
<td class="text-center">
|
||||
<span>{{ $listWorkstation->nomenclature_workstation ?? '' }}</span>
|
||||
</td>
|
||||
|
|
@ -243,7 +238,9 @@ class="btn btn-primary previous float-left">Anterior</a>
|
|||
</fieldset>
|
||||
{{-- ./content --}}
|
||||
@foreach ($listWorkstations as $listWorkstation)
|
||||
@livewire('articulado.select-elemental-tasks-in-wonkstation', ['workstation' => $listWorkstation], key($listWorkstation->id_workstations))
|
||||
|
||||
@livewire('articulado.select-elemental-tasks-in-wonkstation', ['workstation' => $listWorkstation, 'key' => $listWorkstation->id_workstations])
|
||||
|
||||
|
||||
{{-- modal-remover --}}
|
||||
<div class="modal fade" id="modal-remover-{{ $listWorkstation->id_workstations }}">
|
||||
|
|
|
|||
|
|
@ -24,7 +24,6 @@
|
|||
<div class="col-md-12">
|
||||
{{-- <input type="hidden" id="projectId" value="{{ $receiveDataProject->company_projects_id }}"> --}}
|
||||
{{-- <input type="hidden" id="AmbitsIdString" value="{{ $AmbitsIdString }}"> --}}
|
||||
|
||||
<div class="card card-primary">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title">Clientes</h3>
|
||||
|
|
@ -52,6 +51,7 @@
|
|||
</section>
|
||||
@endsection
|
||||
@section('scriptsTemplateAdmin')
|
||||
|
||||
<script type="text/javascript">
|
||||
var dataTables;
|
||||
$(document).ready(function() {
|
||||
|
|
@ -74,7 +74,6 @@
|
|||
data: 'client',
|
||||
name: 'client'
|
||||
},
|
||||
|
||||
{
|
||||
data: 'amount_of_projects_completed',
|
||||
name: 'amount_of_projects_completed'
|
||||
|
|
@ -89,4 +88,5 @@
|
|||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
@endsection
|
||||
|
|
|
|||
|
|
@ -37,6 +37,11 @@
|
|||
return view('testDataTables');
|
||||
});
|
||||
|
||||
route::get('changeStateProject/{projectId}',[CreateProjectController::class,'changeStateProject'])->name('changeStateProject');
|
||||
|
||||
route::get('deleteProject/{projectId}', [CreateProjectController::class,'deleteProject'])->name('deleteProject');
|
||||
|
||||
Route::get('/checkProjectIsptNumber/{projectId?}',[ProjectoDatacontroller::class,'checkProjectIsptNumber'])->name('checkProjectIsptNumber');
|
||||
|
||||
Route::post('deletePendingEquipments', [CreateProjectController::class, 'deletePendingEquipments'])->name('deletePendingEquipments');
|
||||
|
||||
|
|
@ -216,7 +221,7 @@
|
|||
Route::get('AddNomenclatureWorkstation', 'AddNomenclatureWorkstation')->name('AddNomenclatureWorkstation');
|
||||
Route::get('removeProjectEquipment', 'removeProjectEquipment')->name('removeProjectEquipment');
|
||||
Route::delete('deleteWorkstation/{name}', 'deleteWorkstation')->name('deleteWorkstation');
|
||||
Route::post('EditEquipmentsProjects', 'EditEquipmentsProjects')->name('EditEquipmentsProjects');
|
||||
Route::post('editEquipment', 'EditEquipment')->name('editEquipment');
|
||||
Route::post('newProject1', 'processStep1')->name('processStep1');
|
||||
Route::post('createWorkStations', 'createWorkStations')->name('createWorkStations');
|
||||
|
||||
|
|
|
|||
285
vendor/composer/autoload_classmap.php
vendored
285
vendor/composer/autoload_classmap.php
vendored
|
|
@ -12,6 +12,7 @@
|
|||
'App\\Actions\\Fortify\\UpdateUserPassword' => $baseDir . '/app/Actions/Fortify/UpdateUserPassword.php',
|
||||
'App\\Actions\\Fortify\\UpdateUserProfileInformation' => $baseDir . '/app/Actions/Fortify/UpdateUserProfileInformation.php',
|
||||
'App\\Console\\Kernel' => $baseDir . '/app/Console/Kernel.php',
|
||||
'App\\DataTables\\UsersDataTable' => $baseDir . '/app/DataTables/UsersDataTable.php',
|
||||
'App\\Exceptions\\Handler' => $baseDir . '/app/Exceptions/Handler.php',
|
||||
'App\\Http\\Controllers\\Auth\\PasswordResetLinkController' => $baseDir . '/app/Http/Controllers/Auth/PasswordResetLinkController.php',
|
||||
'App\\Http\\Controllers\\Auth\\ResetPasswordController' => $baseDir . '/app/Http/Controllers/Auth/ResetPasswordController.php',
|
||||
|
|
@ -61,6 +62,7 @@
|
|||
'App\\Models\\EquipmentAssociationAmbit' => $baseDir . '/app/Models/EquipmentAssociationAmbit.php',
|
||||
'App\\Models\\EquipmentComments' => $baseDir . '/app/Models/EquipmentComments.php',
|
||||
'App\\Models\\EquipmentType' => $baseDir . '/app/Models/EquipmentType.php',
|
||||
'App\\Models\\EquipmentWorkHistory' => $baseDir . '/app/Models/EquipmentWorkHistory.php',
|
||||
'App\\Models\\FurtherTasks' => $baseDir . '/app/Models/FurtherTasks.php',
|
||||
'App\\Models\\GeneralAttributesEquipment' => $baseDir . '/app/Models/GeneralAttributesEquipment.php',
|
||||
'App\\Models\\OrderEquipmentTasks' => $baseDir . '/app/Models/OrderEquipmentTasks.php',
|
||||
|
|
@ -3609,6 +3611,238 @@
|
|||
'Monolog\\SignalHandler' => $vendorDir . '/monolog/monolog/src/Monolog/SignalHandler.php',
|
||||
'Monolog\\Test\\TestCase' => $vendorDir . '/monolog/monolog/src/Monolog/Test/TestCase.php',
|
||||
'Monolog\\Utils' => $vendorDir . '/monolog/monolog/src/Monolog/Utils.php',
|
||||
'Mpdf\\AssetFetcher' => $vendorDir . '/mpdf/mpdf/src/AssetFetcher.php',
|
||||
'Mpdf\\Barcode' => $vendorDir . '/mpdf/mpdf/src/Barcode.php',
|
||||
'Mpdf\\Barcode\\AbstractBarcode' => $vendorDir . '/mpdf/mpdf/src/Barcode/AbstractBarcode.php',
|
||||
'Mpdf\\Barcode\\BarcodeException' => $vendorDir . '/mpdf/mpdf/src/Barcode/BarcodeException.php',
|
||||
'Mpdf\\Barcode\\BarcodeInterface' => $vendorDir . '/mpdf/mpdf/src/Barcode/BarcodeInterface.php',
|
||||
'Mpdf\\Barcode\\Codabar' => $vendorDir . '/mpdf/mpdf/src/Barcode/Codabar.php',
|
||||
'Mpdf\\Barcode\\Code11' => $vendorDir . '/mpdf/mpdf/src/Barcode/Code11.php',
|
||||
'Mpdf\\Barcode\\Code128' => $vendorDir . '/mpdf/mpdf/src/Barcode/Code128.php',
|
||||
'Mpdf\\Barcode\\Code39' => $vendorDir . '/mpdf/mpdf/src/Barcode/Code39.php',
|
||||
'Mpdf\\Barcode\\Code93' => $vendorDir . '/mpdf/mpdf/src/Barcode/Code93.php',
|
||||
'Mpdf\\Barcode\\EanExt' => $vendorDir . '/mpdf/mpdf/src/Barcode/EanExt.php',
|
||||
'Mpdf\\Barcode\\EanUpc' => $vendorDir . '/mpdf/mpdf/src/Barcode/EanUpc.php',
|
||||
'Mpdf\\Barcode\\I25' => $vendorDir . '/mpdf/mpdf/src/Barcode/I25.php',
|
||||
'Mpdf\\Barcode\\Imb' => $vendorDir . '/mpdf/mpdf/src/Barcode/Imb.php',
|
||||
'Mpdf\\Barcode\\Msi' => $vendorDir . '/mpdf/mpdf/src/Barcode/Msi.php',
|
||||
'Mpdf\\Barcode\\Postnet' => $vendorDir . '/mpdf/mpdf/src/Barcode/Postnet.php',
|
||||
'Mpdf\\Barcode\\Rm4Scc' => $vendorDir . '/mpdf/mpdf/src/Barcode/Rm4Scc.php',
|
||||
'Mpdf\\Barcode\\S25' => $vendorDir . '/mpdf/mpdf/src/Barcode/S25.php',
|
||||
'Mpdf\\Cache' => $vendorDir . '/mpdf/mpdf/src/Cache.php',
|
||||
'Mpdf\\Color\\ColorConverter' => $vendorDir . '/mpdf/mpdf/src/Color/ColorConverter.php',
|
||||
'Mpdf\\Color\\ColorModeConverter' => $vendorDir . '/mpdf/mpdf/src/Color/ColorModeConverter.php',
|
||||
'Mpdf\\Color\\ColorSpaceRestrictor' => $vendorDir . '/mpdf/mpdf/src/Color/ColorSpaceRestrictor.php',
|
||||
'Mpdf\\Color\\NamedColors' => $vendorDir . '/mpdf/mpdf/src/Color/NamedColors.php',
|
||||
'Mpdf\\Config\\ConfigVariables' => $vendorDir . '/mpdf/mpdf/src/Config/ConfigVariables.php',
|
||||
'Mpdf\\Config\\FontVariables' => $vendorDir . '/mpdf/mpdf/src/Config/FontVariables.php',
|
||||
'Mpdf\\Container\\ContainerInterface' => $vendorDir . '/mpdf/mpdf/src/Container/ContainerInterface.php',
|
||||
'Mpdf\\Container\\NotFoundException' => $vendorDir . '/mpdf/mpdf/src/Container/NotFoundException.php',
|
||||
'Mpdf\\Container\\SimpleContainer' => $vendorDir . '/mpdf/mpdf/src/Container/SimpleContainer.php',
|
||||
'Mpdf\\Conversion\\DecToAlpha' => $vendorDir . '/mpdf/mpdf/src/Conversion/DecToAlpha.php',
|
||||
'Mpdf\\Conversion\\DecToCjk' => $vendorDir . '/mpdf/mpdf/src/Conversion/DecToCjk.php',
|
||||
'Mpdf\\Conversion\\DecToHebrew' => $vendorDir . '/mpdf/mpdf/src/Conversion/DecToHebrew.php',
|
||||
'Mpdf\\Conversion\\DecToOther' => $vendorDir . '/mpdf/mpdf/src/Conversion/DecToOther.php',
|
||||
'Mpdf\\Conversion\\DecToRoman' => $vendorDir . '/mpdf/mpdf/src/Conversion/DecToRoman.php',
|
||||
'Mpdf\\CssManager' => $vendorDir . '/mpdf/mpdf/src/CssManager.php',
|
||||
'Mpdf\\Css\\Border' => $vendorDir . '/mpdf/mpdf/src/Css/Border.php',
|
||||
'Mpdf\\Css\\DefaultCss' => $vendorDir . '/mpdf/mpdf/src/Css/DefaultCss.php',
|
||||
'Mpdf\\Css\\TextVars' => $vendorDir . '/mpdf/mpdf/src/Css/TextVars.php',
|
||||
'Mpdf\\DirectWrite' => $vendorDir . '/mpdf/mpdf/src/DirectWrite.php',
|
||||
'Mpdf\\Exception\\AssetFetchingException' => $vendorDir . '/mpdf/mpdf/src/Exception/AssetFetchingException.php',
|
||||
'Mpdf\\Exception\\FontException' => $vendorDir . '/mpdf/mpdf/src/Exception/FontException.php',
|
||||
'Mpdf\\Exception\\InvalidArgumentException' => $vendorDir . '/mpdf/mpdf/src/Exception/InvalidArgumentException.php',
|
||||
'Mpdf\\File\\LocalContentLoader' => $vendorDir . '/mpdf/mpdf/src/File/LocalContentLoader.php',
|
||||
'Mpdf\\File\\LocalContentLoaderInterface' => $vendorDir . '/mpdf/mpdf/src/File/LocalContentLoaderInterface.php',
|
||||
'Mpdf\\File\\StreamWrapperChecker' => $vendorDir . '/mpdf/mpdf/src/File/StreamWrapperChecker.php',
|
||||
'Mpdf\\Fonts\\FontCache' => $vendorDir . '/mpdf/mpdf/src/Fonts/FontCache.php',
|
||||
'Mpdf\\Fonts\\FontFileFinder' => $vendorDir . '/mpdf/mpdf/src/Fonts/FontFileFinder.php',
|
||||
'Mpdf\\Fonts\\GlyphOperator' => $vendorDir . '/mpdf/mpdf/src/Fonts/GlyphOperator.php',
|
||||
'Mpdf\\Fonts\\MetricsGenerator' => $vendorDir . '/mpdf/mpdf/src/Fonts/MetricsGenerator.php',
|
||||
'Mpdf\\Form' => $vendorDir . '/mpdf/mpdf/src/Form.php',
|
||||
'Mpdf\\FpdiTrait' => $vendorDir . '/mpdf/mpdf/src/FpdiTrait.php',
|
||||
'Mpdf\\Gif\\ColorTable' => $vendorDir . '/mpdf/mpdf/src/Gif/ColorTable.php',
|
||||
'Mpdf\\Gif\\FileHeader' => $vendorDir . '/mpdf/mpdf/src/Gif/FileHeader.php',
|
||||
'Mpdf\\Gif\\Gif' => $vendorDir . '/mpdf/mpdf/src/Gif/Gif.php',
|
||||
'Mpdf\\Gif\\Image' => $vendorDir . '/mpdf/mpdf/src/Gif/Image.php',
|
||||
'Mpdf\\Gif\\ImageHeader' => $vendorDir . '/mpdf/mpdf/src/Gif/ImageHeader.php',
|
||||
'Mpdf\\Gif\\Lzw' => $vendorDir . '/mpdf/mpdf/src/Gif/Lzw.php',
|
||||
'Mpdf\\Gradient' => $vendorDir . '/mpdf/mpdf/src/Gradient.php',
|
||||
'Mpdf\\HTMLParserMode' => $vendorDir . '/mpdf/mpdf/src/HTMLParserMode.php',
|
||||
'Mpdf\\Http\\ClientInterface' => $vendorDir . '/mpdf/mpdf/src/Http/ClientInterface.php',
|
||||
'Mpdf\\Http\\CurlHttpClient' => $vendorDir . '/mpdf/mpdf/src/Http/CurlHttpClient.php',
|
||||
'Mpdf\\Http\\Exception\\ClientException' => $vendorDir . '/mpdf/mpdf/src/Http/Exception/ClientException.php',
|
||||
'Mpdf\\Http\\Exception\\ForbiddenRequestException' => $vendorDir . '/mpdf/mpdf/src/Http/Exception/ForbiddenRequestException.php',
|
||||
'Mpdf\\Http\\Exception\\NetworkException' => $vendorDir . '/mpdf/mpdf/src/Http/Exception/NetworkException.php',
|
||||
'Mpdf\\Http\\Exception\\RequestException' => $vendorDir . '/mpdf/mpdf/src/Http/Exception/RequestException.php',
|
||||
'Mpdf\\Http\\SocketHttpClient' => $vendorDir . '/mpdf/mpdf/src/Http/SocketHttpClient.php',
|
||||
'Mpdf\\Hyphenator' => $vendorDir . '/mpdf/mpdf/src/Hyphenator.php',
|
||||
'Mpdf\\Image\\Bmp' => $vendorDir . '/mpdf/mpdf/src/Image/Bmp.php',
|
||||
'Mpdf\\Image\\ImageProcessor' => $vendorDir . '/mpdf/mpdf/src/Image/ImageProcessor.php',
|
||||
'Mpdf\\Image\\ImageTypeGuesser' => $vendorDir . '/mpdf/mpdf/src/Image/ImageTypeGuesser.php',
|
||||
'Mpdf\\Image\\Svg' => $vendorDir . '/mpdf/mpdf/src/Image/Svg.php',
|
||||
'Mpdf\\Image\\Wmf' => $vendorDir . '/mpdf/mpdf/src/Image/Wmf.php',
|
||||
'Mpdf\\Language\\LanguageToFont' => $vendorDir . '/mpdf/mpdf/src/Language/LanguageToFont.php',
|
||||
'Mpdf\\Language\\LanguageToFontInterface' => $vendorDir . '/mpdf/mpdf/src/Language/LanguageToFontInterface.php',
|
||||
'Mpdf\\Language\\ScriptToLanguage' => $vendorDir . '/mpdf/mpdf/src/Language/ScriptToLanguage.php',
|
||||
'Mpdf\\Language\\ScriptToLanguageInterface' => $vendorDir . '/mpdf/mpdf/src/Language/ScriptToLanguageInterface.php',
|
||||
'Mpdf\\Log\\Context' => $vendorDir . '/mpdf/mpdf/src/Log/Context.php',
|
||||
'Mpdf\\Mpdf' => $vendorDir . '/mpdf/mpdf/src/Mpdf.php',
|
||||
'Mpdf\\MpdfException' => $vendorDir . '/mpdf/mpdf/src/MpdfException.php',
|
||||
'Mpdf\\MpdfImageException' => $vendorDir . '/mpdf/mpdf/src/MpdfImageException.php',
|
||||
'Mpdf\\Otl' => $vendorDir . '/mpdf/mpdf/src/Otl.php',
|
||||
'Mpdf\\OtlDump' => $vendorDir . '/mpdf/mpdf/src/OtlDump.php',
|
||||
'Mpdf\\Output\\Destination' => $vendorDir . '/mpdf/mpdf/src/Output/Destination.php',
|
||||
'Mpdf\\PageBox' => $vendorDir . '/mpdf/mpdf/src/PageBox.php',
|
||||
'Mpdf\\PageFormat' => $vendorDir . '/mpdf/mpdf/src/PageFormat.php',
|
||||
'Mpdf\\Pdf\\Protection' => $vendorDir . '/mpdf/mpdf/src/Pdf/Protection.php',
|
||||
'Mpdf\\Pdf\\Protection\\UniqidGenerator' => $vendorDir . '/mpdf/mpdf/src/Pdf/Protection/UniqidGenerator.php',
|
||||
'Mpdf\\PsrHttpMessageShim\\Request' => $vendorDir . '/mpdf/psr-http-message-shim/src/Request.php',
|
||||
'Mpdf\\PsrHttpMessageShim\\Response' => $vendorDir . '/mpdf/psr-http-message-shim/src/Response.php',
|
||||
'Mpdf\\PsrHttpMessageShim\\Stream' => $vendorDir . '/mpdf/psr-http-message-shim/src/Stream.php',
|
||||
'Mpdf\\PsrHttpMessageShim\\Uri' => $vendorDir . '/mpdf/psr-http-message-shim/src/Uri.php',
|
||||
'Mpdf\\PsrLogAwareTrait\\MpdfPsrLogAwareTrait' => $vendorDir . '/mpdf/psr-log-aware-trait/src/MpdfPsrLogAwareTrait.php',
|
||||
'Mpdf\\PsrLogAwareTrait\\PsrLogAwareTrait' => $vendorDir . '/mpdf/psr-log-aware-trait/src/PsrLogAwareTrait.php',
|
||||
'Mpdf\\ServiceFactory' => $vendorDir . '/mpdf/mpdf/src/ServiceFactory.php',
|
||||
'Mpdf\\Shaper\\Indic' => $vendorDir . '/mpdf/mpdf/src/Shaper/Indic.php',
|
||||
'Mpdf\\Shaper\\Myanmar' => $vendorDir . '/mpdf/mpdf/src/Shaper/Myanmar.php',
|
||||
'Mpdf\\Shaper\\Sea' => $vendorDir . '/mpdf/mpdf/src/Shaper/Sea.php',
|
||||
'Mpdf\\SizeConverter' => $vendorDir . '/mpdf/mpdf/src/SizeConverter.php',
|
||||
'Mpdf\\Strict' => $vendorDir . '/mpdf/mpdf/src/Strict.php',
|
||||
'Mpdf\\TTFontFile' => $vendorDir . '/mpdf/mpdf/src/TTFontFile.php',
|
||||
'Mpdf\\TTFontFileAnalysis' => $vendorDir . '/mpdf/mpdf/src/TTFontFileAnalysis.php',
|
||||
'Mpdf\\TableOfContents' => $vendorDir . '/mpdf/mpdf/src/TableOfContents.php',
|
||||
'Mpdf\\Tag' => $vendorDir . '/mpdf/mpdf/src/Tag.php',
|
||||
'Mpdf\\Tag\\A' => $vendorDir . '/mpdf/mpdf/src/Tag/A.php',
|
||||
'Mpdf\\Tag\\Acronym' => $vendorDir . '/mpdf/mpdf/src/Tag/Acronym.php',
|
||||
'Mpdf\\Tag\\Address' => $vendorDir . '/mpdf/mpdf/src/Tag/Address.php',
|
||||
'Mpdf\\Tag\\Annotation' => $vendorDir . '/mpdf/mpdf/src/Tag/Annotation.php',
|
||||
'Mpdf\\Tag\\Article' => $vendorDir . '/mpdf/mpdf/src/Tag/Article.php',
|
||||
'Mpdf\\Tag\\Aside' => $vendorDir . '/mpdf/mpdf/src/Tag/Aside.php',
|
||||
'Mpdf\\Tag\\B' => $vendorDir . '/mpdf/mpdf/src/Tag/B.php',
|
||||
'Mpdf\\Tag\\BarCode' => $vendorDir . '/mpdf/mpdf/src/Tag/BarCode.php',
|
||||
'Mpdf\\Tag\\Bdi' => $vendorDir . '/mpdf/mpdf/src/Tag/Bdi.php',
|
||||
'Mpdf\\Tag\\Bdo' => $vendorDir . '/mpdf/mpdf/src/Tag/Bdo.php',
|
||||
'Mpdf\\Tag\\Big' => $vendorDir . '/mpdf/mpdf/src/Tag/Big.php',
|
||||
'Mpdf\\Tag\\BlockQuote' => $vendorDir . '/mpdf/mpdf/src/Tag/BlockQuote.php',
|
||||
'Mpdf\\Tag\\BlockTag' => $vendorDir . '/mpdf/mpdf/src/Tag/BlockTag.php',
|
||||
'Mpdf\\Tag\\Bookmark' => $vendorDir . '/mpdf/mpdf/src/Tag/Bookmark.php',
|
||||
'Mpdf\\Tag\\Br' => $vendorDir . '/mpdf/mpdf/src/Tag/Br.php',
|
||||
'Mpdf\\Tag\\Caption' => $vendorDir . '/mpdf/mpdf/src/Tag/Caption.php',
|
||||
'Mpdf\\Tag\\Center' => $vendorDir . '/mpdf/mpdf/src/Tag/Center.php',
|
||||
'Mpdf\\Tag\\Cite' => $vendorDir . '/mpdf/mpdf/src/Tag/Cite.php',
|
||||
'Mpdf\\Tag\\Code' => $vendorDir . '/mpdf/mpdf/src/Tag/Code.php',
|
||||
'Mpdf\\Tag\\ColumnBreak' => $vendorDir . '/mpdf/mpdf/src/Tag/ColumnBreak.php',
|
||||
'Mpdf\\Tag\\Columns' => $vendorDir . '/mpdf/mpdf/src/Tag/Columns.php',
|
||||
'Mpdf\\Tag\\Dd' => $vendorDir . '/mpdf/mpdf/src/Tag/Dd.php',
|
||||
'Mpdf\\Tag\\Del' => $vendorDir . '/mpdf/mpdf/src/Tag/Del.php',
|
||||
'Mpdf\\Tag\\Details' => $vendorDir . '/mpdf/mpdf/src/Tag/Details.php',
|
||||
'Mpdf\\Tag\\Div' => $vendorDir . '/mpdf/mpdf/src/Tag/Div.php',
|
||||
'Mpdf\\Tag\\Dl' => $vendorDir . '/mpdf/mpdf/src/Tag/Dl.php',
|
||||
'Mpdf\\Tag\\DotTab' => $vendorDir . '/mpdf/mpdf/src/Tag/DotTab.php',
|
||||
'Mpdf\\Tag\\Dt' => $vendorDir . '/mpdf/mpdf/src/Tag/Dt.php',
|
||||
'Mpdf\\Tag\\Em' => $vendorDir . '/mpdf/mpdf/src/Tag/Em.php',
|
||||
'Mpdf\\Tag\\FieldSet' => $vendorDir . '/mpdf/mpdf/src/Tag/FieldSet.php',
|
||||
'Mpdf\\Tag\\FigCaption' => $vendorDir . '/mpdf/mpdf/src/Tag/FigCaption.php',
|
||||
'Mpdf\\Tag\\Figure' => $vendorDir . '/mpdf/mpdf/src/Tag/Figure.php',
|
||||
'Mpdf\\Tag\\Font' => $vendorDir . '/mpdf/mpdf/src/Tag/Font.php',
|
||||
'Mpdf\\Tag\\Footer' => $vendorDir . '/mpdf/mpdf/src/Tag/Footer.php',
|
||||
'Mpdf\\Tag\\Form' => $vendorDir . '/mpdf/mpdf/src/Tag/Form.php',
|
||||
'Mpdf\\Tag\\FormFeed' => $vendorDir . '/mpdf/mpdf/src/Tag/FormFeed.php',
|
||||
'Mpdf\\Tag\\H1' => $vendorDir . '/mpdf/mpdf/src/Tag/H1.php',
|
||||
'Mpdf\\Tag\\H2' => $vendorDir . '/mpdf/mpdf/src/Tag/H2.php',
|
||||
'Mpdf\\Tag\\H3' => $vendorDir . '/mpdf/mpdf/src/Tag/H3.php',
|
||||
'Mpdf\\Tag\\H4' => $vendorDir . '/mpdf/mpdf/src/Tag/H4.php',
|
||||
'Mpdf\\Tag\\H5' => $vendorDir . '/mpdf/mpdf/src/Tag/H5.php',
|
||||
'Mpdf\\Tag\\H6' => $vendorDir . '/mpdf/mpdf/src/Tag/H6.php',
|
||||
'Mpdf\\Tag\\HGroup' => $vendorDir . '/mpdf/mpdf/src/Tag/HGroup.php',
|
||||
'Mpdf\\Tag\\Header' => $vendorDir . '/mpdf/mpdf/src/Tag/Header.php',
|
||||
'Mpdf\\Tag\\Hr' => $vendorDir . '/mpdf/mpdf/src/Tag/Hr.php',
|
||||
'Mpdf\\Tag\\I' => $vendorDir . '/mpdf/mpdf/src/Tag/I.php',
|
||||
'Mpdf\\Tag\\Img' => $vendorDir . '/mpdf/mpdf/src/Tag/Img.php',
|
||||
'Mpdf\\Tag\\IndexEntry' => $vendorDir . '/mpdf/mpdf/src/Tag/IndexEntry.php',
|
||||
'Mpdf\\Tag\\IndexInsert' => $vendorDir . '/mpdf/mpdf/src/Tag/IndexInsert.php',
|
||||
'Mpdf\\Tag\\InlineTag' => $vendorDir . '/mpdf/mpdf/src/Tag/InlineTag.php',
|
||||
'Mpdf\\Tag\\Input' => $vendorDir . '/mpdf/mpdf/src/Tag/Input.php',
|
||||
'Mpdf\\Tag\\Ins' => $vendorDir . '/mpdf/mpdf/src/Tag/Ins.php',
|
||||
'Mpdf\\Tag\\Kbd' => $vendorDir . '/mpdf/mpdf/src/Tag/Kbd.php',
|
||||
'Mpdf\\Tag\\Legend' => $vendorDir . '/mpdf/mpdf/src/Tag/Legend.php',
|
||||
'Mpdf\\Tag\\Li' => $vendorDir . '/mpdf/mpdf/src/Tag/Li.php',
|
||||
'Mpdf\\Tag\\Main' => $vendorDir . '/mpdf/mpdf/src/Tag/Main.php',
|
||||
'Mpdf\\Tag\\Mark' => $vendorDir . '/mpdf/mpdf/src/Tag/Mark.php',
|
||||
'Mpdf\\Tag\\Meter' => $vendorDir . '/mpdf/mpdf/src/Tag/Meter.php',
|
||||
'Mpdf\\Tag\\Nav' => $vendorDir . '/mpdf/mpdf/src/Tag/Nav.php',
|
||||
'Mpdf\\Tag\\NewColumn' => $vendorDir . '/mpdf/mpdf/src/Tag/NewColumn.php',
|
||||
'Mpdf\\Tag\\NewPage' => $vendorDir . '/mpdf/mpdf/src/Tag/NewPage.php',
|
||||
'Mpdf\\Tag\\Ol' => $vendorDir . '/mpdf/mpdf/src/Tag/Ol.php',
|
||||
'Mpdf\\Tag\\Option' => $vendorDir . '/mpdf/mpdf/src/Tag/Option.php',
|
||||
'Mpdf\\Tag\\P' => $vendorDir . '/mpdf/mpdf/src/Tag/P.php',
|
||||
'Mpdf\\Tag\\PageBreak' => $vendorDir . '/mpdf/mpdf/src/Tag/PageBreak.php',
|
||||
'Mpdf\\Tag\\PageFooter' => $vendorDir . '/mpdf/mpdf/src/Tag/PageFooter.php',
|
||||
'Mpdf\\Tag\\PageHeader' => $vendorDir . '/mpdf/mpdf/src/Tag/PageHeader.php',
|
||||
'Mpdf\\Tag\\Pre' => $vendorDir . '/mpdf/mpdf/src/Tag/Pre.php',
|
||||
'Mpdf\\Tag\\Progress' => $vendorDir . '/mpdf/mpdf/src/Tag/Progress.php',
|
||||
'Mpdf\\Tag\\Q' => $vendorDir . '/mpdf/mpdf/src/Tag/Q.php',
|
||||
'Mpdf\\Tag\\S' => $vendorDir . '/mpdf/mpdf/src/Tag/S.php',
|
||||
'Mpdf\\Tag\\Samp' => $vendorDir . '/mpdf/mpdf/src/Tag/Samp.php',
|
||||
'Mpdf\\Tag\\Section' => $vendorDir . '/mpdf/mpdf/src/Tag/Section.php',
|
||||
'Mpdf\\Tag\\Select' => $vendorDir . '/mpdf/mpdf/src/Tag/Select.php',
|
||||
'Mpdf\\Tag\\SetHtmlPageFooter' => $vendorDir . '/mpdf/mpdf/src/Tag/SetHtmlPageFooter.php',
|
||||
'Mpdf\\Tag\\SetHtmlPageHeader' => $vendorDir . '/mpdf/mpdf/src/Tag/SetHtmlPageHeader.php',
|
||||
'Mpdf\\Tag\\SetPageFooter' => $vendorDir . '/mpdf/mpdf/src/Tag/SetPageFooter.php',
|
||||
'Mpdf\\Tag\\SetPageHeader' => $vendorDir . '/mpdf/mpdf/src/Tag/SetPageHeader.php',
|
||||
'Mpdf\\Tag\\Small' => $vendorDir . '/mpdf/mpdf/src/Tag/Small.php',
|
||||
'Mpdf\\Tag\\Span' => $vendorDir . '/mpdf/mpdf/src/Tag/Span.php',
|
||||
'Mpdf\\Tag\\Strike' => $vendorDir . '/mpdf/mpdf/src/Tag/Strike.php',
|
||||
'Mpdf\\Tag\\Strong' => $vendorDir . '/mpdf/mpdf/src/Tag/Strong.php',
|
||||
'Mpdf\\Tag\\Sub' => $vendorDir . '/mpdf/mpdf/src/Tag/Sub.php',
|
||||
'Mpdf\\Tag\\SubstituteTag' => $vendorDir . '/mpdf/mpdf/src/Tag/SubstituteTag.php',
|
||||
'Mpdf\\Tag\\Summary' => $vendorDir . '/mpdf/mpdf/src/Tag/Summary.php',
|
||||
'Mpdf\\Tag\\Sup' => $vendorDir . '/mpdf/mpdf/src/Tag/Sup.php',
|
||||
'Mpdf\\Tag\\TBody' => $vendorDir . '/mpdf/mpdf/src/Tag/TBody.php',
|
||||
'Mpdf\\Tag\\TFoot' => $vendorDir . '/mpdf/mpdf/src/Tag/TFoot.php',
|
||||
'Mpdf\\Tag\\THead' => $vendorDir . '/mpdf/mpdf/src/Tag/THead.php',
|
||||
'Mpdf\\Tag\\Table' => $vendorDir . '/mpdf/mpdf/src/Tag/Table.php',
|
||||
'Mpdf\\Tag\\Tag' => $vendorDir . '/mpdf/mpdf/src/Tag/Tag.php',
|
||||
'Mpdf\\Tag\\Td' => $vendorDir . '/mpdf/mpdf/src/Tag/Td.php',
|
||||
'Mpdf\\Tag\\TextArea' => $vendorDir . '/mpdf/mpdf/src/Tag/TextArea.php',
|
||||
'Mpdf\\Tag\\TextCircle' => $vendorDir . '/mpdf/mpdf/src/Tag/TextCircle.php',
|
||||
'Mpdf\\Tag\\Th' => $vendorDir . '/mpdf/mpdf/src/Tag/Th.php',
|
||||
'Mpdf\\Tag\\Time' => $vendorDir . '/mpdf/mpdf/src/Tag/Time.php',
|
||||
'Mpdf\\Tag\\Toc' => $vendorDir . '/mpdf/mpdf/src/Tag/Toc.php',
|
||||
'Mpdf\\Tag\\TocEntry' => $vendorDir . '/mpdf/mpdf/src/Tag/TocEntry.php',
|
||||
'Mpdf\\Tag\\TocPageBreak' => $vendorDir . '/mpdf/mpdf/src/Tag/TocPageBreak.php',
|
||||
'Mpdf\\Tag\\Tr' => $vendorDir . '/mpdf/mpdf/src/Tag/Tr.php',
|
||||
'Mpdf\\Tag\\Tt' => $vendorDir . '/mpdf/mpdf/src/Tag/Tt.php',
|
||||
'Mpdf\\Tag\\Tta' => $vendorDir . '/mpdf/mpdf/src/Tag/Tta.php',
|
||||
'Mpdf\\Tag\\Tts' => $vendorDir . '/mpdf/mpdf/src/Tag/Tts.php',
|
||||
'Mpdf\\Tag\\Ttz' => $vendorDir . '/mpdf/mpdf/src/Tag/Ttz.php',
|
||||
'Mpdf\\Tag\\U' => $vendorDir . '/mpdf/mpdf/src/Tag/U.php',
|
||||
'Mpdf\\Tag\\Ul' => $vendorDir . '/mpdf/mpdf/src/Tag/Ul.php',
|
||||
'Mpdf\\Tag\\VarTag' => $vendorDir . '/mpdf/mpdf/src/Tag/VarTag.php',
|
||||
'Mpdf\\Tag\\WatermarkImage' => $vendorDir . '/mpdf/mpdf/src/Tag/WatermarkImage.php',
|
||||
'Mpdf\\Tag\\WatermarkText' => $vendorDir . '/mpdf/mpdf/src/Tag/WatermarkText.php',
|
||||
'Mpdf\\Ucdn' => $vendorDir . '/mpdf/mpdf/src/Ucdn.php',
|
||||
'Mpdf\\Utils\\Arrays' => $vendorDir . '/mpdf/mpdf/src/Utils/Arrays.php',
|
||||
'Mpdf\\Utils\\NumericString' => $vendorDir . '/mpdf/mpdf/src/Utils/NumericString.php',
|
||||
'Mpdf\\Utils\\PdfDate' => $vendorDir . '/mpdf/mpdf/src/Utils/PdfDate.php',
|
||||
'Mpdf\\Utils\\UtfString' => $vendorDir . '/mpdf/mpdf/src/Utils/UtfString.php',
|
||||
'Mpdf\\Watermark' => $vendorDir . '/mpdf/mpdf/src/Watermark.php',
|
||||
'Mpdf\\WatermarkImage' => $vendorDir . '/mpdf/mpdf/src/WatermarkImage.php',
|
||||
'Mpdf\\WatermarkText' => $vendorDir . '/mpdf/mpdf/src/WatermarkText.php',
|
||||
'Mpdf\\Writer\\BackgroundWriter' => $vendorDir . '/mpdf/mpdf/src/Writer/BackgroundWriter.php',
|
||||
'Mpdf\\Writer\\BaseWriter' => $vendorDir . '/mpdf/mpdf/src/Writer/BaseWriter.php',
|
||||
'Mpdf\\Writer\\BookmarkWriter' => $vendorDir . '/mpdf/mpdf/src/Writer/BookmarkWriter.php',
|
||||
'Mpdf\\Writer\\ColorWriter' => $vendorDir . '/mpdf/mpdf/src/Writer/ColorWriter.php',
|
||||
'Mpdf\\Writer\\FontWriter' => $vendorDir . '/mpdf/mpdf/src/Writer/FontWriter.php',
|
||||
'Mpdf\\Writer\\FormWriter' => $vendorDir . '/mpdf/mpdf/src/Writer/FormWriter.php',
|
||||
'Mpdf\\Writer\\ImageWriter' => $vendorDir . '/mpdf/mpdf/src/Writer/ImageWriter.php',
|
||||
'Mpdf\\Writer\\JavaScriptWriter' => $vendorDir . '/mpdf/mpdf/src/Writer/JavaScriptWriter.php',
|
||||
'Mpdf\\Writer\\MetadataWriter' => $vendorDir . '/mpdf/mpdf/src/Writer/MetadataWriter.php',
|
||||
'Mpdf\\Writer\\ObjectWriter' => $vendorDir . '/mpdf/mpdf/src/Writer/ObjectWriter.php',
|
||||
'Mpdf\\Writer\\OptionalContentWriter' => $vendorDir . '/mpdf/mpdf/src/Writer/OptionalContentWriter.php',
|
||||
'Mpdf\\Writer\\PageWriter' => $vendorDir . '/mpdf/mpdf/src/Writer/PageWriter.php',
|
||||
'Mpdf\\Writer\\ResourceWriter' => $vendorDir . '/mpdf/mpdf/src/Writer/ResourceWriter.php',
|
||||
'MyCLabs\\Enum\\Enum' => $vendorDir . '/myclabs/php-enum/src/Enum.php',
|
||||
'MyCLabs\\Enum\\PHPUnit\\Comparator' => $vendorDir . '/myclabs/php-enum/src/PHPUnit/Comparator.php',
|
||||
'Nette\\ArgumentOutOfRangeException' => $vendorDir . '/nette/utils/src/exceptions.php',
|
||||
|
|
@ -7347,5 +7581,56 @@
|
|||
'ZipStream\\Option\\Version' => $vendorDir . '/maennchen/zipstream-php/src/Option/Version.php',
|
||||
'ZipStream\\Stream' => $vendorDir . '/maennchen/zipstream-php/src/Stream.php',
|
||||
'ZipStream\\ZipStream' => $vendorDir . '/maennchen/zipstream-php/src/ZipStream.php',
|
||||
'setasign\\Fpdi\\FpdfTpl' => $vendorDir . '/setasign/fpdi/src/FpdfTpl.php',
|
||||
'setasign\\Fpdi\\FpdfTplTrait' => $vendorDir . '/setasign/fpdi/src/FpdfTplTrait.php',
|
||||
'setasign\\Fpdi\\FpdfTrait' => $vendorDir . '/setasign/fpdi/src/FpdfTrait.php',
|
||||
'setasign\\Fpdi\\Fpdi' => $vendorDir . '/setasign/fpdi/src/Fpdi.php',
|
||||
'setasign\\Fpdi\\FpdiException' => $vendorDir . '/setasign/fpdi/src/FpdiException.php',
|
||||
'setasign\\Fpdi\\FpdiTrait' => $vendorDir . '/setasign/fpdi/src/FpdiTrait.php',
|
||||
'setasign\\Fpdi\\GraphicsState' => $vendorDir . '/setasign/fpdi/src/GraphicsState.php',
|
||||
'setasign\\Fpdi\\Math\\Matrix' => $vendorDir . '/setasign/fpdi/src/Math/Matrix.php',
|
||||
'setasign\\Fpdi\\Math\\Vector' => $vendorDir . '/setasign/fpdi/src/Math/Vector.php',
|
||||
'setasign\\Fpdi\\PdfParser\\CrossReference\\AbstractReader' => $vendorDir . '/setasign/fpdi/src/PdfParser/CrossReference/AbstractReader.php',
|
||||
'setasign\\Fpdi\\PdfParser\\CrossReference\\CrossReference' => $vendorDir . '/setasign/fpdi/src/PdfParser/CrossReference/CrossReference.php',
|
||||
'setasign\\Fpdi\\PdfParser\\CrossReference\\CrossReferenceException' => $vendorDir . '/setasign/fpdi/src/PdfParser/CrossReference/CrossReferenceException.php',
|
||||
'setasign\\Fpdi\\PdfParser\\CrossReference\\FixedReader' => $vendorDir . '/setasign/fpdi/src/PdfParser/CrossReference/FixedReader.php',
|
||||
'setasign\\Fpdi\\PdfParser\\CrossReference\\LineReader' => $vendorDir . '/setasign/fpdi/src/PdfParser/CrossReference/LineReader.php',
|
||||
'setasign\\Fpdi\\PdfParser\\CrossReference\\ReaderInterface' => $vendorDir . '/setasign/fpdi/src/PdfParser/CrossReference/ReaderInterface.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Filter\\Ascii85' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/Ascii85.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Filter\\Ascii85Exception' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/Ascii85Exception.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Filter\\AsciiHex' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/AsciiHex.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Filter\\FilterException' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/FilterException.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Filter\\FilterInterface' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/FilterInterface.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Filter\\Flate' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/Flate.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Filter\\FlateException' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/FlateException.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Filter\\Lzw' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/Lzw.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Filter\\LzwException' => $vendorDir . '/setasign/fpdi/src/PdfParser/Filter/LzwException.php',
|
||||
'setasign\\Fpdi\\PdfParser\\PdfParser' => $vendorDir . '/setasign/fpdi/src/PdfParser/PdfParser.php',
|
||||
'setasign\\Fpdi\\PdfParser\\PdfParserException' => $vendorDir . '/setasign/fpdi/src/PdfParser/PdfParserException.php',
|
||||
'setasign\\Fpdi\\PdfParser\\StreamReader' => $vendorDir . '/setasign/fpdi/src/PdfParser/StreamReader.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Tokenizer' => $vendorDir . '/setasign/fpdi/src/PdfParser/Tokenizer.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfArray' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfArray.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfBoolean' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfBoolean.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfDictionary' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfDictionary.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfHexString' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfHexString.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfIndirectObject' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfIndirectObject.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfIndirectObjectReference' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfIndirectObjectReference.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfName' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfName.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfNull' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfNull.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfNumeric' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfNumeric.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfStream' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfStream.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfString' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfString.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfToken' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfToken.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfType' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfType.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfTypeException' => $vendorDir . '/setasign/fpdi/src/PdfParser/Type/PdfTypeException.php',
|
||||
'setasign\\Fpdi\\PdfReader\\DataStructure\\Rectangle' => $vendorDir . '/setasign/fpdi/src/PdfReader/DataStructure/Rectangle.php',
|
||||
'setasign\\Fpdi\\PdfReader\\Page' => $vendorDir . '/setasign/fpdi/src/PdfReader/Page.php',
|
||||
'setasign\\Fpdi\\PdfReader\\PageBoundaries' => $vendorDir . '/setasign/fpdi/src/PdfReader/PageBoundaries.php',
|
||||
'setasign\\Fpdi\\PdfReader\\PdfReader' => $vendorDir . '/setasign/fpdi/src/PdfReader/PdfReader.php',
|
||||
'setasign\\Fpdi\\PdfReader\\PdfReaderException' => $vendorDir . '/setasign/fpdi/src/PdfReader/PdfReaderException.php',
|
||||
'setasign\\Fpdi\\TcpdfFpdi' => $vendorDir . '/setasign/fpdi/src/TcpdfFpdi.php',
|
||||
'setasign\\Fpdi\\Tcpdf\\Fpdi' => $vendorDir . '/setasign/fpdi/src/Tcpdf/Fpdi.php',
|
||||
'setasign\\Fpdi\\Tfpdf\\FpdfTpl' => $vendorDir . '/setasign/fpdi/src/Tfpdf/FpdfTpl.php',
|
||||
'setasign\\Fpdi\\Tfpdf\\Fpdi' => $vendorDir . '/setasign/fpdi/src/Tfpdf/Fpdi.php',
|
||||
'voku\\helper\\ASCII' => $vendorDir . '/voku/portable-ascii/src/voku/helper/ASCII.php',
|
||||
);
|
||||
|
|
|
|||
3
vendor/composer/autoload_files.php
vendored
3
vendor/composer/autoload_files.php
vendored
|
|
@ -18,13 +18,13 @@
|
|||
'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php',
|
||||
'3bd81c9b8fcc150b69d8b63b4d2ccf23' => $vendorDir . '/spatie/flare-client-php/src/helpers.php',
|
||||
'0b47d6d4a00ca9112ba3953b49e7c9a4' => $vendorDir . '/yajra/laravel-datatables-oracle/src/helper.php',
|
||||
'6124b4c8570aa390c21fafd04a26c69f' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
|
||||
'35a6ad97d21e794e7e22a17d806652e4' => $vendorDir . '/nunomaduro/termwind/src/Functions.php',
|
||||
'7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
|
||||
'09f6b20656683369174dd6fa83b7e5fb' => $vendorDir . '/symfony/polyfill-uuid/bootstrap.php',
|
||||
'a1105708a18b76903365ca1c4aa61b02' => $vendorDir . '/symfony/translation/Resources/functions.php',
|
||||
'2cffec82183ee1cea088009cef9a6fc3' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier.composer.php',
|
||||
'c964ee0ededf28c96ebd9db5099ef910' => $vendorDir . '/guzzlehttp/promises/src/functions_include.php',
|
||||
'6124b4c8570aa390c21fafd04a26c69f' => $vendorDir . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
|
||||
'801c31d8ed748cfa537fa45402288c95' => $vendorDir . '/psy/psysh/src/functions.php',
|
||||
'e39a8b23c42d4e1452234d762b03835a' => $vendorDir . '/ramsey/uuid/src/functions.php',
|
||||
'37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
|
||||
|
|
@ -33,6 +33,7 @@
|
|||
'f0906e6318348a765ffb6eb24e0d0938' => $vendorDir . '/laravel/framework/src/Illuminate/Foundation/helpers.php',
|
||||
'58571171fd5812e6e447dce228f52f4d' => $vendorDir . '/laravel/framework/src/Illuminate/Support/helpers.php',
|
||||
'40275907c8566c390185147049ef6e5d' => $vendorDir . '/livewire/livewire/src/helpers.php',
|
||||
'db356362850385d08a5381de2638b5fd' => $vendorDir . '/mpdf/mpdf/src/functions.php',
|
||||
'a1cfe24d14977df6878b9bf804af2d1c' => $vendorDir . '/nunomaduro/collision/src/Adapters/Phpunit/Autoload.php',
|
||||
'ec07570ca5a812141189b1fa81503674' => $vendorDir . '/phpunit/phpunit/src/Framework/Assert/Functions.php',
|
||||
'320163ac6b93aebe3dc25b60a0533d56' => $vendorDir . '/spatie/laravel-ignition/src/helpers.php',
|
||||
|
|
|
|||
6
vendor/composer/autoload_psr4.php
vendored
6
vendor/composer/autoload_psr4.php
vendored
|
|
@ -7,8 +7,9 @@
|
|||
|
||||
return array(
|
||||
'voku\\' => array($vendorDir . '/voku/portable-ascii/src/voku'),
|
||||
'setasign\\Fpdi\\' => array($vendorDir . '/setasign/fpdi/src'),
|
||||
'ZipStream\\' => array($vendorDir . '/maennchen/zipstream-php/src'),
|
||||
'Yajra\\DataTables\\' => array($vendorDir . '/yajra/laravel-datatables-oracle/src', $vendorDir . '/yajra/laravel-datatables-buttons/src', $vendorDir . '/yajra/laravel-datatables-html/src'),
|
||||
'Yajra\\DataTables\\' => array($vendorDir . '/yajra/laravel-datatables-buttons/src', $vendorDir . '/yajra/laravel-datatables-html/src', $vendorDir . '/yajra/laravel-datatables-oracle/src'),
|
||||
'Whoops\\' => array($vendorDir . '/filp/whoops/src/Whoops'),
|
||||
'Webmozart\\Assert\\' => array($vendorDir . '/webmozart/assert/src'),
|
||||
'TijsVerkoyen\\CssToInlineStyles\\' => array($vendorDir . '/tijsverkoyen/css-to-inline-styles/src'),
|
||||
|
|
@ -66,6 +67,9 @@
|
|||
'ParagonIE\\ConstantTime\\' => array($vendorDir . '/paragonie/constant_time_encoding/src'),
|
||||
'NunoMaduro\\Collision\\' => array($vendorDir . '/nunomaduro/collision/src'),
|
||||
'MyCLabs\\Enum\\' => array($vendorDir . '/myclabs/php-enum/src'),
|
||||
'Mpdf\\PsrLogAwareTrait\\' => array($vendorDir . '/mpdf/psr-log-aware-trait/src'),
|
||||
'Mpdf\\PsrHttpMessageShim\\' => array($vendorDir . '/mpdf/psr-http-message-shim/src'),
|
||||
'Mpdf\\' => array($vendorDir . '/mpdf/mpdf/src'),
|
||||
'Monolog\\' => array($vendorDir . '/monolog/monolog/src/Monolog'),
|
||||
'Matrix\\' => array($vendorDir . '/markbaker/matrix/classes/src'),
|
||||
'Masterminds\\' => array($vendorDir . '/masterminds/html5/src'),
|
||||
|
|
|
|||
317
vendor/composer/autoload_static.php
vendored
317
vendor/composer/autoload_static.php
vendored
|
|
@ -19,13 +19,13 @@ class ComposerStaticInit4de2290df2a8c5142f72130885c7079d
|
|||
'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
|
||||
'3bd81c9b8fcc150b69d8b63b4d2ccf23' => __DIR__ . '/..' . '/spatie/flare-client-php/src/helpers.php',
|
||||
'0b47d6d4a00ca9112ba3953b49e7c9a4' => __DIR__ . '/..' . '/yajra/laravel-datatables-oracle/src/helper.php',
|
||||
'6124b4c8570aa390c21fafd04a26c69f' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
|
||||
'35a6ad97d21e794e7e22a17d806652e4' => __DIR__ . '/..' . '/nunomaduro/termwind/src/Functions.php',
|
||||
'7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php',
|
||||
'09f6b20656683369174dd6fa83b7e5fb' => __DIR__ . '/..' . '/symfony/polyfill-uuid/bootstrap.php',
|
||||
'a1105708a18b76903365ca1c4aa61b02' => __DIR__ . '/..' . '/symfony/translation/Resources/functions.php',
|
||||
'2cffec82183ee1cea088009cef9a6fc3' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier.composer.php',
|
||||
'c964ee0ededf28c96ebd9db5099ef910' => __DIR__ . '/..' . '/guzzlehttp/promises/src/functions_include.php',
|
||||
'6124b4c8570aa390c21fafd04a26c69f' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
|
||||
'801c31d8ed748cfa537fa45402288c95' => __DIR__ . '/..' . '/psy/psysh/src/functions.php',
|
||||
'e39a8b23c42d4e1452234d762b03835a' => __DIR__ . '/..' . '/ramsey/uuid/src/functions.php',
|
||||
'37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php',
|
||||
|
|
@ -34,6 +34,7 @@ class ComposerStaticInit4de2290df2a8c5142f72130885c7079d
|
|||
'f0906e6318348a765ffb6eb24e0d0938' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Foundation/helpers.php',
|
||||
'58571171fd5812e6e447dce228f52f4d' => __DIR__ . '/..' . '/laravel/framework/src/Illuminate/Support/helpers.php',
|
||||
'40275907c8566c390185147049ef6e5d' => __DIR__ . '/..' . '/livewire/livewire/src/helpers.php',
|
||||
'db356362850385d08a5381de2638b5fd' => __DIR__ . '/..' . '/mpdf/mpdf/src/functions.php',
|
||||
'a1cfe24d14977df6878b9bf804af2d1c' => __DIR__ . '/..' . '/nunomaduro/collision/src/Adapters/Phpunit/Autoload.php',
|
||||
'ec07570ca5a812141189b1fa81503674' => __DIR__ . '/..' . '/phpunit/phpunit/src/Framework/Assert/Functions.php',
|
||||
'320163ac6b93aebe3dc25b60a0533d56' => __DIR__ . '/..' . '/spatie/laravel-ignition/src/helpers.php',
|
||||
|
|
@ -44,6 +45,10 @@ class ComposerStaticInit4de2290df2a8c5142f72130885c7079d
|
|||
array (
|
||||
'voku\\' => 5,
|
||||
),
|
||||
's' =>
|
||||
array (
|
||||
'setasign\\Fpdi\\' => 14,
|
||||
),
|
||||
'Z' =>
|
||||
array (
|
||||
'ZipStream\\' => 10,
|
||||
|
|
@ -129,6 +134,9 @@ class ComposerStaticInit4de2290df2a8c5142f72130885c7079d
|
|||
'M' =>
|
||||
array (
|
||||
'MyCLabs\\Enum\\' => 13,
|
||||
'Mpdf\\PsrLogAwareTrait\\' => 22,
|
||||
'Mpdf\\PsrHttpMessageShim\\' => 24,
|
||||
'Mpdf\\' => 5,
|
||||
'Monolog\\' => 8,
|
||||
'Matrix\\' => 7,
|
||||
'Masterminds\\' => 12,
|
||||
|
|
@ -204,15 +212,19 @@ class ComposerStaticInit4de2290df2a8c5142f72130885c7079d
|
|||
array (
|
||||
0 => __DIR__ . '/..' . '/voku/portable-ascii/src/voku',
|
||||
),
|
||||
'setasign\\Fpdi\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/setasign/fpdi/src',
|
||||
),
|
||||
'ZipStream\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/maennchen/zipstream-php/src',
|
||||
),
|
||||
'Yajra\\DataTables\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/yajra/laravel-datatables-oracle/src',
|
||||
1 => __DIR__ . '/..' . '/yajra/laravel-datatables-buttons/src',
|
||||
2 => __DIR__ . '/..' . '/yajra/laravel-datatables-html/src',
|
||||
0 => __DIR__ . '/..' . '/yajra/laravel-datatables-buttons/src',
|
||||
1 => __DIR__ . '/..' . '/yajra/laravel-datatables-html/src',
|
||||
2 => __DIR__ . '/..' . '/yajra/laravel-datatables-oracle/src',
|
||||
),
|
||||
'Whoops\\' =>
|
||||
array (
|
||||
|
|
@ -443,6 +455,18 @@ class ComposerStaticInit4de2290df2a8c5142f72130885c7079d
|
|||
array (
|
||||
0 => __DIR__ . '/..' . '/myclabs/php-enum/src',
|
||||
),
|
||||
'Mpdf\\PsrLogAwareTrait\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/mpdf/psr-log-aware-trait/src',
|
||||
),
|
||||
'Mpdf\\PsrHttpMessageShim\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/mpdf/psr-http-message-shim/src',
|
||||
),
|
||||
'Mpdf\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/mpdf/mpdf/src',
|
||||
),
|
||||
'Monolog\\' =>
|
||||
array (
|
||||
0 => __DIR__ . '/..' . '/monolog/monolog/src/Monolog',
|
||||
|
|
@ -634,6 +658,7 @@ class ComposerStaticInit4de2290df2a8c5142f72130885c7079d
|
|||
'App\\Actions\\Fortify\\UpdateUserPassword' => __DIR__ . '/../..' . '/app/Actions/Fortify/UpdateUserPassword.php',
|
||||
'App\\Actions\\Fortify\\UpdateUserProfileInformation' => __DIR__ . '/../..' . '/app/Actions/Fortify/UpdateUserProfileInformation.php',
|
||||
'App\\Console\\Kernel' => __DIR__ . '/../..' . '/app/Console/Kernel.php',
|
||||
'App\\DataTables\\UsersDataTable' => __DIR__ . '/../..' . '/app/DataTables/UsersDataTable.php',
|
||||
'App\\Exceptions\\Handler' => __DIR__ . '/../..' . '/app/Exceptions/Handler.php',
|
||||
'App\\Http\\Controllers\\Auth\\PasswordResetLinkController' => __DIR__ . '/../..' . '/app/Http/Controllers/Auth/PasswordResetLinkController.php',
|
||||
'App\\Http\\Controllers\\Auth\\ResetPasswordController' => __DIR__ . '/../..' . '/app/Http/Controllers/Auth/ResetPasswordController.php',
|
||||
|
|
@ -683,6 +708,7 @@ class ComposerStaticInit4de2290df2a8c5142f72130885c7079d
|
|||
'App\\Models\\EquipmentAssociationAmbit' => __DIR__ . '/../..' . '/app/Models/EquipmentAssociationAmbit.php',
|
||||
'App\\Models\\EquipmentComments' => __DIR__ . '/../..' . '/app/Models/EquipmentComments.php',
|
||||
'App\\Models\\EquipmentType' => __DIR__ . '/../..' . '/app/Models/EquipmentType.php',
|
||||
'App\\Models\\EquipmentWorkHistory' => __DIR__ . '/../..' . '/app/Models/EquipmentWorkHistory.php',
|
||||
'App\\Models\\FurtherTasks' => __DIR__ . '/../..' . '/app/Models/FurtherTasks.php',
|
||||
'App\\Models\\GeneralAttributesEquipment' => __DIR__ . '/../..' . '/app/Models/GeneralAttributesEquipment.php',
|
||||
'App\\Models\\OrderEquipmentTasks' => __DIR__ . '/../..' . '/app/Models/OrderEquipmentTasks.php',
|
||||
|
|
@ -4231,6 +4257,238 @@ class ComposerStaticInit4de2290df2a8c5142f72130885c7079d
|
|||
'Monolog\\SignalHandler' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/SignalHandler.php',
|
||||
'Monolog\\Test\\TestCase' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Test/TestCase.php',
|
||||
'Monolog\\Utils' => __DIR__ . '/..' . '/monolog/monolog/src/Monolog/Utils.php',
|
||||
'Mpdf\\AssetFetcher' => __DIR__ . '/..' . '/mpdf/mpdf/src/AssetFetcher.php',
|
||||
'Mpdf\\Barcode' => __DIR__ . '/..' . '/mpdf/mpdf/src/Barcode.php',
|
||||
'Mpdf\\Barcode\\AbstractBarcode' => __DIR__ . '/..' . '/mpdf/mpdf/src/Barcode/AbstractBarcode.php',
|
||||
'Mpdf\\Barcode\\BarcodeException' => __DIR__ . '/..' . '/mpdf/mpdf/src/Barcode/BarcodeException.php',
|
||||
'Mpdf\\Barcode\\BarcodeInterface' => __DIR__ . '/..' . '/mpdf/mpdf/src/Barcode/BarcodeInterface.php',
|
||||
'Mpdf\\Barcode\\Codabar' => __DIR__ . '/..' . '/mpdf/mpdf/src/Barcode/Codabar.php',
|
||||
'Mpdf\\Barcode\\Code11' => __DIR__ . '/..' . '/mpdf/mpdf/src/Barcode/Code11.php',
|
||||
'Mpdf\\Barcode\\Code128' => __DIR__ . '/..' . '/mpdf/mpdf/src/Barcode/Code128.php',
|
||||
'Mpdf\\Barcode\\Code39' => __DIR__ . '/..' . '/mpdf/mpdf/src/Barcode/Code39.php',
|
||||
'Mpdf\\Barcode\\Code93' => __DIR__ . '/..' . '/mpdf/mpdf/src/Barcode/Code93.php',
|
||||
'Mpdf\\Barcode\\EanExt' => __DIR__ . '/..' . '/mpdf/mpdf/src/Barcode/EanExt.php',
|
||||
'Mpdf\\Barcode\\EanUpc' => __DIR__ . '/..' . '/mpdf/mpdf/src/Barcode/EanUpc.php',
|
||||
'Mpdf\\Barcode\\I25' => __DIR__ . '/..' . '/mpdf/mpdf/src/Barcode/I25.php',
|
||||
'Mpdf\\Barcode\\Imb' => __DIR__ . '/..' . '/mpdf/mpdf/src/Barcode/Imb.php',
|
||||
'Mpdf\\Barcode\\Msi' => __DIR__ . '/..' . '/mpdf/mpdf/src/Barcode/Msi.php',
|
||||
'Mpdf\\Barcode\\Postnet' => __DIR__ . '/..' . '/mpdf/mpdf/src/Barcode/Postnet.php',
|
||||
'Mpdf\\Barcode\\Rm4Scc' => __DIR__ . '/..' . '/mpdf/mpdf/src/Barcode/Rm4Scc.php',
|
||||
'Mpdf\\Barcode\\S25' => __DIR__ . '/..' . '/mpdf/mpdf/src/Barcode/S25.php',
|
||||
'Mpdf\\Cache' => __DIR__ . '/..' . '/mpdf/mpdf/src/Cache.php',
|
||||
'Mpdf\\Color\\ColorConverter' => __DIR__ . '/..' . '/mpdf/mpdf/src/Color/ColorConverter.php',
|
||||
'Mpdf\\Color\\ColorModeConverter' => __DIR__ . '/..' . '/mpdf/mpdf/src/Color/ColorModeConverter.php',
|
||||
'Mpdf\\Color\\ColorSpaceRestrictor' => __DIR__ . '/..' . '/mpdf/mpdf/src/Color/ColorSpaceRestrictor.php',
|
||||
'Mpdf\\Color\\NamedColors' => __DIR__ . '/..' . '/mpdf/mpdf/src/Color/NamedColors.php',
|
||||
'Mpdf\\Config\\ConfigVariables' => __DIR__ . '/..' . '/mpdf/mpdf/src/Config/ConfigVariables.php',
|
||||
'Mpdf\\Config\\FontVariables' => __DIR__ . '/..' . '/mpdf/mpdf/src/Config/FontVariables.php',
|
||||
'Mpdf\\Container\\ContainerInterface' => __DIR__ . '/..' . '/mpdf/mpdf/src/Container/ContainerInterface.php',
|
||||
'Mpdf\\Container\\NotFoundException' => __DIR__ . '/..' . '/mpdf/mpdf/src/Container/NotFoundException.php',
|
||||
'Mpdf\\Container\\SimpleContainer' => __DIR__ . '/..' . '/mpdf/mpdf/src/Container/SimpleContainer.php',
|
||||
'Mpdf\\Conversion\\DecToAlpha' => __DIR__ . '/..' . '/mpdf/mpdf/src/Conversion/DecToAlpha.php',
|
||||
'Mpdf\\Conversion\\DecToCjk' => __DIR__ . '/..' . '/mpdf/mpdf/src/Conversion/DecToCjk.php',
|
||||
'Mpdf\\Conversion\\DecToHebrew' => __DIR__ . '/..' . '/mpdf/mpdf/src/Conversion/DecToHebrew.php',
|
||||
'Mpdf\\Conversion\\DecToOther' => __DIR__ . '/..' . '/mpdf/mpdf/src/Conversion/DecToOther.php',
|
||||
'Mpdf\\Conversion\\DecToRoman' => __DIR__ . '/..' . '/mpdf/mpdf/src/Conversion/DecToRoman.php',
|
||||
'Mpdf\\CssManager' => __DIR__ . '/..' . '/mpdf/mpdf/src/CssManager.php',
|
||||
'Mpdf\\Css\\Border' => __DIR__ . '/..' . '/mpdf/mpdf/src/Css/Border.php',
|
||||
'Mpdf\\Css\\DefaultCss' => __DIR__ . '/..' . '/mpdf/mpdf/src/Css/DefaultCss.php',
|
||||
'Mpdf\\Css\\TextVars' => __DIR__ . '/..' . '/mpdf/mpdf/src/Css/TextVars.php',
|
||||
'Mpdf\\DirectWrite' => __DIR__ . '/..' . '/mpdf/mpdf/src/DirectWrite.php',
|
||||
'Mpdf\\Exception\\AssetFetchingException' => __DIR__ . '/..' . '/mpdf/mpdf/src/Exception/AssetFetchingException.php',
|
||||
'Mpdf\\Exception\\FontException' => __DIR__ . '/..' . '/mpdf/mpdf/src/Exception/FontException.php',
|
||||
'Mpdf\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/mpdf/mpdf/src/Exception/InvalidArgumentException.php',
|
||||
'Mpdf\\File\\LocalContentLoader' => __DIR__ . '/..' . '/mpdf/mpdf/src/File/LocalContentLoader.php',
|
||||
'Mpdf\\File\\LocalContentLoaderInterface' => __DIR__ . '/..' . '/mpdf/mpdf/src/File/LocalContentLoaderInterface.php',
|
||||
'Mpdf\\File\\StreamWrapperChecker' => __DIR__ . '/..' . '/mpdf/mpdf/src/File/StreamWrapperChecker.php',
|
||||
'Mpdf\\Fonts\\FontCache' => __DIR__ . '/..' . '/mpdf/mpdf/src/Fonts/FontCache.php',
|
||||
'Mpdf\\Fonts\\FontFileFinder' => __DIR__ . '/..' . '/mpdf/mpdf/src/Fonts/FontFileFinder.php',
|
||||
'Mpdf\\Fonts\\GlyphOperator' => __DIR__ . '/..' . '/mpdf/mpdf/src/Fonts/GlyphOperator.php',
|
||||
'Mpdf\\Fonts\\MetricsGenerator' => __DIR__ . '/..' . '/mpdf/mpdf/src/Fonts/MetricsGenerator.php',
|
||||
'Mpdf\\Form' => __DIR__ . '/..' . '/mpdf/mpdf/src/Form.php',
|
||||
'Mpdf\\FpdiTrait' => __DIR__ . '/..' . '/mpdf/mpdf/src/FpdiTrait.php',
|
||||
'Mpdf\\Gif\\ColorTable' => __DIR__ . '/..' . '/mpdf/mpdf/src/Gif/ColorTable.php',
|
||||
'Mpdf\\Gif\\FileHeader' => __DIR__ . '/..' . '/mpdf/mpdf/src/Gif/FileHeader.php',
|
||||
'Mpdf\\Gif\\Gif' => __DIR__ . '/..' . '/mpdf/mpdf/src/Gif/Gif.php',
|
||||
'Mpdf\\Gif\\Image' => __DIR__ . '/..' . '/mpdf/mpdf/src/Gif/Image.php',
|
||||
'Mpdf\\Gif\\ImageHeader' => __DIR__ . '/..' . '/mpdf/mpdf/src/Gif/ImageHeader.php',
|
||||
'Mpdf\\Gif\\Lzw' => __DIR__ . '/..' . '/mpdf/mpdf/src/Gif/Lzw.php',
|
||||
'Mpdf\\Gradient' => __DIR__ . '/..' . '/mpdf/mpdf/src/Gradient.php',
|
||||
'Mpdf\\HTMLParserMode' => __DIR__ . '/..' . '/mpdf/mpdf/src/HTMLParserMode.php',
|
||||
'Mpdf\\Http\\ClientInterface' => __DIR__ . '/..' . '/mpdf/mpdf/src/Http/ClientInterface.php',
|
||||
'Mpdf\\Http\\CurlHttpClient' => __DIR__ . '/..' . '/mpdf/mpdf/src/Http/CurlHttpClient.php',
|
||||
'Mpdf\\Http\\Exception\\ClientException' => __DIR__ . '/..' . '/mpdf/mpdf/src/Http/Exception/ClientException.php',
|
||||
'Mpdf\\Http\\Exception\\ForbiddenRequestException' => __DIR__ . '/..' . '/mpdf/mpdf/src/Http/Exception/ForbiddenRequestException.php',
|
||||
'Mpdf\\Http\\Exception\\NetworkException' => __DIR__ . '/..' . '/mpdf/mpdf/src/Http/Exception/NetworkException.php',
|
||||
'Mpdf\\Http\\Exception\\RequestException' => __DIR__ . '/..' . '/mpdf/mpdf/src/Http/Exception/RequestException.php',
|
||||
'Mpdf\\Http\\SocketHttpClient' => __DIR__ . '/..' . '/mpdf/mpdf/src/Http/SocketHttpClient.php',
|
||||
'Mpdf\\Hyphenator' => __DIR__ . '/..' . '/mpdf/mpdf/src/Hyphenator.php',
|
||||
'Mpdf\\Image\\Bmp' => __DIR__ . '/..' . '/mpdf/mpdf/src/Image/Bmp.php',
|
||||
'Mpdf\\Image\\ImageProcessor' => __DIR__ . '/..' . '/mpdf/mpdf/src/Image/ImageProcessor.php',
|
||||
'Mpdf\\Image\\ImageTypeGuesser' => __DIR__ . '/..' . '/mpdf/mpdf/src/Image/ImageTypeGuesser.php',
|
||||
'Mpdf\\Image\\Svg' => __DIR__ . '/..' . '/mpdf/mpdf/src/Image/Svg.php',
|
||||
'Mpdf\\Image\\Wmf' => __DIR__ . '/..' . '/mpdf/mpdf/src/Image/Wmf.php',
|
||||
'Mpdf\\Language\\LanguageToFont' => __DIR__ . '/..' . '/mpdf/mpdf/src/Language/LanguageToFont.php',
|
||||
'Mpdf\\Language\\LanguageToFontInterface' => __DIR__ . '/..' . '/mpdf/mpdf/src/Language/LanguageToFontInterface.php',
|
||||
'Mpdf\\Language\\ScriptToLanguage' => __DIR__ . '/..' . '/mpdf/mpdf/src/Language/ScriptToLanguage.php',
|
||||
'Mpdf\\Language\\ScriptToLanguageInterface' => __DIR__ . '/..' . '/mpdf/mpdf/src/Language/ScriptToLanguageInterface.php',
|
||||
'Mpdf\\Log\\Context' => __DIR__ . '/..' . '/mpdf/mpdf/src/Log/Context.php',
|
||||
'Mpdf\\Mpdf' => __DIR__ . '/..' . '/mpdf/mpdf/src/Mpdf.php',
|
||||
'Mpdf\\MpdfException' => __DIR__ . '/..' . '/mpdf/mpdf/src/MpdfException.php',
|
||||
'Mpdf\\MpdfImageException' => __DIR__ . '/..' . '/mpdf/mpdf/src/MpdfImageException.php',
|
||||
'Mpdf\\Otl' => __DIR__ . '/..' . '/mpdf/mpdf/src/Otl.php',
|
||||
'Mpdf\\OtlDump' => __DIR__ . '/..' . '/mpdf/mpdf/src/OtlDump.php',
|
||||
'Mpdf\\Output\\Destination' => __DIR__ . '/..' . '/mpdf/mpdf/src/Output/Destination.php',
|
||||
'Mpdf\\PageBox' => __DIR__ . '/..' . '/mpdf/mpdf/src/PageBox.php',
|
||||
'Mpdf\\PageFormat' => __DIR__ . '/..' . '/mpdf/mpdf/src/PageFormat.php',
|
||||
'Mpdf\\Pdf\\Protection' => __DIR__ . '/..' . '/mpdf/mpdf/src/Pdf/Protection.php',
|
||||
'Mpdf\\Pdf\\Protection\\UniqidGenerator' => __DIR__ . '/..' . '/mpdf/mpdf/src/Pdf/Protection/UniqidGenerator.php',
|
||||
'Mpdf\\PsrHttpMessageShim\\Request' => __DIR__ . '/..' . '/mpdf/psr-http-message-shim/src/Request.php',
|
||||
'Mpdf\\PsrHttpMessageShim\\Response' => __DIR__ . '/..' . '/mpdf/psr-http-message-shim/src/Response.php',
|
||||
'Mpdf\\PsrHttpMessageShim\\Stream' => __DIR__ . '/..' . '/mpdf/psr-http-message-shim/src/Stream.php',
|
||||
'Mpdf\\PsrHttpMessageShim\\Uri' => __DIR__ . '/..' . '/mpdf/psr-http-message-shim/src/Uri.php',
|
||||
'Mpdf\\PsrLogAwareTrait\\MpdfPsrLogAwareTrait' => __DIR__ . '/..' . '/mpdf/psr-log-aware-trait/src/MpdfPsrLogAwareTrait.php',
|
||||
'Mpdf\\PsrLogAwareTrait\\PsrLogAwareTrait' => __DIR__ . '/..' . '/mpdf/psr-log-aware-trait/src/PsrLogAwareTrait.php',
|
||||
'Mpdf\\ServiceFactory' => __DIR__ . '/..' . '/mpdf/mpdf/src/ServiceFactory.php',
|
||||
'Mpdf\\Shaper\\Indic' => __DIR__ . '/..' . '/mpdf/mpdf/src/Shaper/Indic.php',
|
||||
'Mpdf\\Shaper\\Myanmar' => __DIR__ . '/..' . '/mpdf/mpdf/src/Shaper/Myanmar.php',
|
||||
'Mpdf\\Shaper\\Sea' => __DIR__ . '/..' . '/mpdf/mpdf/src/Shaper/Sea.php',
|
||||
'Mpdf\\SizeConverter' => __DIR__ . '/..' . '/mpdf/mpdf/src/SizeConverter.php',
|
||||
'Mpdf\\Strict' => __DIR__ . '/..' . '/mpdf/mpdf/src/Strict.php',
|
||||
'Mpdf\\TTFontFile' => __DIR__ . '/..' . '/mpdf/mpdf/src/TTFontFile.php',
|
||||
'Mpdf\\TTFontFileAnalysis' => __DIR__ . '/..' . '/mpdf/mpdf/src/TTFontFileAnalysis.php',
|
||||
'Mpdf\\TableOfContents' => __DIR__ . '/..' . '/mpdf/mpdf/src/TableOfContents.php',
|
||||
'Mpdf\\Tag' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag.php',
|
||||
'Mpdf\\Tag\\A' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/A.php',
|
||||
'Mpdf\\Tag\\Acronym' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Acronym.php',
|
||||
'Mpdf\\Tag\\Address' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Address.php',
|
||||
'Mpdf\\Tag\\Annotation' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Annotation.php',
|
||||
'Mpdf\\Tag\\Article' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Article.php',
|
||||
'Mpdf\\Tag\\Aside' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Aside.php',
|
||||
'Mpdf\\Tag\\B' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/B.php',
|
||||
'Mpdf\\Tag\\BarCode' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/BarCode.php',
|
||||
'Mpdf\\Tag\\Bdi' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Bdi.php',
|
||||
'Mpdf\\Tag\\Bdo' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Bdo.php',
|
||||
'Mpdf\\Tag\\Big' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Big.php',
|
||||
'Mpdf\\Tag\\BlockQuote' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/BlockQuote.php',
|
||||
'Mpdf\\Tag\\BlockTag' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/BlockTag.php',
|
||||
'Mpdf\\Tag\\Bookmark' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Bookmark.php',
|
||||
'Mpdf\\Tag\\Br' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Br.php',
|
||||
'Mpdf\\Tag\\Caption' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Caption.php',
|
||||
'Mpdf\\Tag\\Center' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Center.php',
|
||||
'Mpdf\\Tag\\Cite' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Cite.php',
|
||||
'Mpdf\\Tag\\Code' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Code.php',
|
||||
'Mpdf\\Tag\\ColumnBreak' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/ColumnBreak.php',
|
||||
'Mpdf\\Tag\\Columns' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Columns.php',
|
||||
'Mpdf\\Tag\\Dd' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Dd.php',
|
||||
'Mpdf\\Tag\\Del' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Del.php',
|
||||
'Mpdf\\Tag\\Details' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Details.php',
|
||||
'Mpdf\\Tag\\Div' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Div.php',
|
||||
'Mpdf\\Tag\\Dl' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Dl.php',
|
||||
'Mpdf\\Tag\\DotTab' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/DotTab.php',
|
||||
'Mpdf\\Tag\\Dt' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Dt.php',
|
||||
'Mpdf\\Tag\\Em' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Em.php',
|
||||
'Mpdf\\Tag\\FieldSet' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/FieldSet.php',
|
||||
'Mpdf\\Tag\\FigCaption' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/FigCaption.php',
|
||||
'Mpdf\\Tag\\Figure' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Figure.php',
|
||||
'Mpdf\\Tag\\Font' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Font.php',
|
||||
'Mpdf\\Tag\\Footer' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Footer.php',
|
||||
'Mpdf\\Tag\\Form' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Form.php',
|
||||
'Mpdf\\Tag\\FormFeed' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/FormFeed.php',
|
||||
'Mpdf\\Tag\\H1' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/H1.php',
|
||||
'Mpdf\\Tag\\H2' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/H2.php',
|
||||
'Mpdf\\Tag\\H3' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/H3.php',
|
||||
'Mpdf\\Tag\\H4' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/H4.php',
|
||||
'Mpdf\\Tag\\H5' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/H5.php',
|
||||
'Mpdf\\Tag\\H6' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/H6.php',
|
||||
'Mpdf\\Tag\\HGroup' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/HGroup.php',
|
||||
'Mpdf\\Tag\\Header' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Header.php',
|
||||
'Mpdf\\Tag\\Hr' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Hr.php',
|
||||
'Mpdf\\Tag\\I' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/I.php',
|
||||
'Mpdf\\Tag\\Img' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Img.php',
|
||||
'Mpdf\\Tag\\IndexEntry' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/IndexEntry.php',
|
||||
'Mpdf\\Tag\\IndexInsert' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/IndexInsert.php',
|
||||
'Mpdf\\Tag\\InlineTag' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/InlineTag.php',
|
||||
'Mpdf\\Tag\\Input' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Input.php',
|
||||
'Mpdf\\Tag\\Ins' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Ins.php',
|
||||
'Mpdf\\Tag\\Kbd' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Kbd.php',
|
||||
'Mpdf\\Tag\\Legend' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Legend.php',
|
||||
'Mpdf\\Tag\\Li' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Li.php',
|
||||
'Mpdf\\Tag\\Main' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Main.php',
|
||||
'Mpdf\\Tag\\Mark' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Mark.php',
|
||||
'Mpdf\\Tag\\Meter' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Meter.php',
|
||||
'Mpdf\\Tag\\Nav' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Nav.php',
|
||||
'Mpdf\\Tag\\NewColumn' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/NewColumn.php',
|
||||
'Mpdf\\Tag\\NewPage' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/NewPage.php',
|
||||
'Mpdf\\Tag\\Ol' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Ol.php',
|
||||
'Mpdf\\Tag\\Option' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Option.php',
|
||||
'Mpdf\\Tag\\P' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/P.php',
|
||||
'Mpdf\\Tag\\PageBreak' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/PageBreak.php',
|
||||
'Mpdf\\Tag\\PageFooter' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/PageFooter.php',
|
||||
'Mpdf\\Tag\\PageHeader' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/PageHeader.php',
|
||||
'Mpdf\\Tag\\Pre' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Pre.php',
|
||||
'Mpdf\\Tag\\Progress' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Progress.php',
|
||||
'Mpdf\\Tag\\Q' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Q.php',
|
||||
'Mpdf\\Tag\\S' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/S.php',
|
||||
'Mpdf\\Tag\\Samp' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Samp.php',
|
||||
'Mpdf\\Tag\\Section' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Section.php',
|
||||
'Mpdf\\Tag\\Select' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Select.php',
|
||||
'Mpdf\\Tag\\SetHtmlPageFooter' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/SetHtmlPageFooter.php',
|
||||
'Mpdf\\Tag\\SetHtmlPageHeader' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/SetHtmlPageHeader.php',
|
||||
'Mpdf\\Tag\\SetPageFooter' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/SetPageFooter.php',
|
||||
'Mpdf\\Tag\\SetPageHeader' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/SetPageHeader.php',
|
||||
'Mpdf\\Tag\\Small' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Small.php',
|
||||
'Mpdf\\Tag\\Span' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Span.php',
|
||||
'Mpdf\\Tag\\Strike' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Strike.php',
|
||||
'Mpdf\\Tag\\Strong' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Strong.php',
|
||||
'Mpdf\\Tag\\Sub' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Sub.php',
|
||||
'Mpdf\\Tag\\SubstituteTag' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/SubstituteTag.php',
|
||||
'Mpdf\\Tag\\Summary' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Summary.php',
|
||||
'Mpdf\\Tag\\Sup' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Sup.php',
|
||||
'Mpdf\\Tag\\TBody' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/TBody.php',
|
||||
'Mpdf\\Tag\\TFoot' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/TFoot.php',
|
||||
'Mpdf\\Tag\\THead' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/THead.php',
|
||||
'Mpdf\\Tag\\Table' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Table.php',
|
||||
'Mpdf\\Tag\\Tag' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Tag.php',
|
||||
'Mpdf\\Tag\\Td' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Td.php',
|
||||
'Mpdf\\Tag\\TextArea' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/TextArea.php',
|
||||
'Mpdf\\Tag\\TextCircle' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/TextCircle.php',
|
||||
'Mpdf\\Tag\\Th' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Th.php',
|
||||
'Mpdf\\Tag\\Time' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Time.php',
|
||||
'Mpdf\\Tag\\Toc' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Toc.php',
|
||||
'Mpdf\\Tag\\TocEntry' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/TocEntry.php',
|
||||
'Mpdf\\Tag\\TocPageBreak' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/TocPageBreak.php',
|
||||
'Mpdf\\Tag\\Tr' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Tr.php',
|
||||
'Mpdf\\Tag\\Tt' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Tt.php',
|
||||
'Mpdf\\Tag\\Tta' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Tta.php',
|
||||
'Mpdf\\Tag\\Tts' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Tts.php',
|
||||
'Mpdf\\Tag\\Ttz' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Ttz.php',
|
||||
'Mpdf\\Tag\\U' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/U.php',
|
||||
'Mpdf\\Tag\\Ul' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/Ul.php',
|
||||
'Mpdf\\Tag\\VarTag' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/VarTag.php',
|
||||
'Mpdf\\Tag\\WatermarkImage' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/WatermarkImage.php',
|
||||
'Mpdf\\Tag\\WatermarkText' => __DIR__ . '/..' . '/mpdf/mpdf/src/Tag/WatermarkText.php',
|
||||
'Mpdf\\Ucdn' => __DIR__ . '/..' . '/mpdf/mpdf/src/Ucdn.php',
|
||||
'Mpdf\\Utils\\Arrays' => __DIR__ . '/..' . '/mpdf/mpdf/src/Utils/Arrays.php',
|
||||
'Mpdf\\Utils\\NumericString' => __DIR__ . '/..' . '/mpdf/mpdf/src/Utils/NumericString.php',
|
||||
'Mpdf\\Utils\\PdfDate' => __DIR__ . '/..' . '/mpdf/mpdf/src/Utils/PdfDate.php',
|
||||
'Mpdf\\Utils\\UtfString' => __DIR__ . '/..' . '/mpdf/mpdf/src/Utils/UtfString.php',
|
||||
'Mpdf\\Watermark' => __DIR__ . '/..' . '/mpdf/mpdf/src/Watermark.php',
|
||||
'Mpdf\\WatermarkImage' => __DIR__ . '/..' . '/mpdf/mpdf/src/WatermarkImage.php',
|
||||
'Mpdf\\WatermarkText' => __DIR__ . '/..' . '/mpdf/mpdf/src/WatermarkText.php',
|
||||
'Mpdf\\Writer\\BackgroundWriter' => __DIR__ . '/..' . '/mpdf/mpdf/src/Writer/BackgroundWriter.php',
|
||||
'Mpdf\\Writer\\BaseWriter' => __DIR__ . '/..' . '/mpdf/mpdf/src/Writer/BaseWriter.php',
|
||||
'Mpdf\\Writer\\BookmarkWriter' => __DIR__ . '/..' . '/mpdf/mpdf/src/Writer/BookmarkWriter.php',
|
||||
'Mpdf\\Writer\\ColorWriter' => __DIR__ . '/..' . '/mpdf/mpdf/src/Writer/ColorWriter.php',
|
||||
'Mpdf\\Writer\\FontWriter' => __DIR__ . '/..' . '/mpdf/mpdf/src/Writer/FontWriter.php',
|
||||
'Mpdf\\Writer\\FormWriter' => __DIR__ . '/..' . '/mpdf/mpdf/src/Writer/FormWriter.php',
|
||||
'Mpdf\\Writer\\ImageWriter' => __DIR__ . '/..' . '/mpdf/mpdf/src/Writer/ImageWriter.php',
|
||||
'Mpdf\\Writer\\JavaScriptWriter' => __DIR__ . '/..' . '/mpdf/mpdf/src/Writer/JavaScriptWriter.php',
|
||||
'Mpdf\\Writer\\MetadataWriter' => __DIR__ . '/..' . '/mpdf/mpdf/src/Writer/MetadataWriter.php',
|
||||
'Mpdf\\Writer\\ObjectWriter' => __DIR__ . '/..' . '/mpdf/mpdf/src/Writer/ObjectWriter.php',
|
||||
'Mpdf\\Writer\\OptionalContentWriter' => __DIR__ . '/..' . '/mpdf/mpdf/src/Writer/OptionalContentWriter.php',
|
||||
'Mpdf\\Writer\\PageWriter' => __DIR__ . '/..' . '/mpdf/mpdf/src/Writer/PageWriter.php',
|
||||
'Mpdf\\Writer\\ResourceWriter' => __DIR__ . '/..' . '/mpdf/mpdf/src/Writer/ResourceWriter.php',
|
||||
'MyCLabs\\Enum\\Enum' => __DIR__ . '/..' . '/myclabs/php-enum/src/Enum.php',
|
||||
'MyCLabs\\Enum\\PHPUnit\\Comparator' => __DIR__ . '/..' . '/myclabs/php-enum/src/PHPUnit/Comparator.php',
|
||||
'Nette\\ArgumentOutOfRangeException' => __DIR__ . '/..' . '/nette/utils/src/exceptions.php',
|
||||
|
|
@ -7969,6 +8227,57 @@ class ComposerStaticInit4de2290df2a8c5142f72130885c7079d
|
|||
'ZipStream\\Option\\Version' => __DIR__ . '/..' . '/maennchen/zipstream-php/src/Option/Version.php',
|
||||
'ZipStream\\Stream' => __DIR__ . '/..' . '/maennchen/zipstream-php/src/Stream.php',
|
||||
'ZipStream\\ZipStream' => __DIR__ . '/..' . '/maennchen/zipstream-php/src/ZipStream.php',
|
||||
'setasign\\Fpdi\\FpdfTpl' => __DIR__ . '/..' . '/setasign/fpdi/src/FpdfTpl.php',
|
||||
'setasign\\Fpdi\\FpdfTplTrait' => __DIR__ . '/..' . '/setasign/fpdi/src/FpdfTplTrait.php',
|
||||
'setasign\\Fpdi\\FpdfTrait' => __DIR__ . '/..' . '/setasign/fpdi/src/FpdfTrait.php',
|
||||
'setasign\\Fpdi\\Fpdi' => __DIR__ . '/..' . '/setasign/fpdi/src/Fpdi.php',
|
||||
'setasign\\Fpdi\\FpdiException' => __DIR__ . '/..' . '/setasign/fpdi/src/FpdiException.php',
|
||||
'setasign\\Fpdi\\FpdiTrait' => __DIR__ . '/..' . '/setasign/fpdi/src/FpdiTrait.php',
|
||||
'setasign\\Fpdi\\GraphicsState' => __DIR__ . '/..' . '/setasign/fpdi/src/GraphicsState.php',
|
||||
'setasign\\Fpdi\\Math\\Matrix' => __DIR__ . '/..' . '/setasign/fpdi/src/Math/Matrix.php',
|
||||
'setasign\\Fpdi\\Math\\Vector' => __DIR__ . '/..' . '/setasign/fpdi/src/Math/Vector.php',
|
||||
'setasign\\Fpdi\\PdfParser\\CrossReference\\AbstractReader' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/CrossReference/AbstractReader.php',
|
||||
'setasign\\Fpdi\\PdfParser\\CrossReference\\CrossReference' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/CrossReference/CrossReference.php',
|
||||
'setasign\\Fpdi\\PdfParser\\CrossReference\\CrossReferenceException' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/CrossReference/CrossReferenceException.php',
|
||||
'setasign\\Fpdi\\PdfParser\\CrossReference\\FixedReader' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/CrossReference/FixedReader.php',
|
||||
'setasign\\Fpdi\\PdfParser\\CrossReference\\LineReader' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/CrossReference/LineReader.php',
|
||||
'setasign\\Fpdi\\PdfParser\\CrossReference\\ReaderInterface' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/CrossReference/ReaderInterface.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Filter\\Ascii85' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Filter/Ascii85.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Filter\\Ascii85Exception' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Filter/Ascii85Exception.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Filter\\AsciiHex' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Filter/AsciiHex.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Filter\\FilterException' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Filter/FilterException.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Filter\\FilterInterface' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Filter/FilterInterface.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Filter\\Flate' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Filter/Flate.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Filter\\FlateException' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Filter/FlateException.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Filter\\Lzw' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Filter/Lzw.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Filter\\LzwException' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Filter/LzwException.php',
|
||||
'setasign\\Fpdi\\PdfParser\\PdfParser' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/PdfParser.php',
|
||||
'setasign\\Fpdi\\PdfParser\\PdfParserException' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/PdfParserException.php',
|
||||
'setasign\\Fpdi\\PdfParser\\StreamReader' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/StreamReader.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Tokenizer' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Tokenizer.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfArray' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfArray.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfBoolean' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfBoolean.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfDictionary' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfDictionary.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfHexString' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfHexString.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfIndirectObject' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfIndirectObject.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfIndirectObjectReference' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfIndirectObjectReference.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfName' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfName.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfNull' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfNull.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfNumeric' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfNumeric.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfStream' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfStream.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfString' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfString.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfToken' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfToken.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfType' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfType.php',
|
||||
'setasign\\Fpdi\\PdfParser\\Type\\PdfTypeException' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfParser/Type/PdfTypeException.php',
|
||||
'setasign\\Fpdi\\PdfReader\\DataStructure\\Rectangle' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfReader/DataStructure/Rectangle.php',
|
||||
'setasign\\Fpdi\\PdfReader\\Page' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfReader/Page.php',
|
||||
'setasign\\Fpdi\\PdfReader\\PageBoundaries' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfReader/PageBoundaries.php',
|
||||
'setasign\\Fpdi\\PdfReader\\PdfReader' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfReader/PdfReader.php',
|
||||
'setasign\\Fpdi\\PdfReader\\PdfReaderException' => __DIR__ . '/..' . '/setasign/fpdi/src/PdfReader/PdfReaderException.php',
|
||||
'setasign\\Fpdi\\TcpdfFpdi' => __DIR__ . '/..' . '/setasign/fpdi/src/TcpdfFpdi.php',
|
||||
'setasign\\Fpdi\\Tcpdf\\Fpdi' => __DIR__ . '/..' . '/setasign/fpdi/src/Tcpdf/Fpdi.php',
|
||||
'setasign\\Fpdi\\Tfpdf\\FpdfTpl' => __DIR__ . '/..' . '/setasign/fpdi/src/Tfpdf/FpdfTpl.php',
|
||||
'setasign\\Fpdi\\Tfpdf\\Fpdi' => __DIR__ . '/..' . '/setasign/fpdi/src/Tfpdf/Fpdi.php',
|
||||
'voku\\helper\\ASCII' => __DIR__ . '/..' . '/voku/portable-ascii/src/voku/helper/ASCII.php',
|
||||
);
|
||||
|
||||
|
|
|
|||
311
vendor/composer/installed.json
vendored
311
vendor/composer/installed.json
vendored
|
|
@ -2996,6 +2996,188 @@
|
|||
],
|
||||
"install-path": "../monolog/monolog"
|
||||
},
|
||||
{
|
||||
"name": "mpdf/mpdf",
|
||||
"version": "v8.2.2",
|
||||
"version_normalized": "8.2.2.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/mpdf/mpdf.git",
|
||||
"reference": "596a87b876d7793be7be060a8ac13424de120dd5"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/mpdf/mpdf/zipball/596a87b876d7793be7be060a8ac13424de120dd5",
|
||||
"reference": "596a87b876d7793be7be060a8ac13424de120dd5",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"ext-gd": "*",
|
||||
"ext-mbstring": "*",
|
||||
"mpdf/psr-http-message-shim": "^1.0 || ^2.0",
|
||||
"mpdf/psr-log-aware-trait": "^2.0 || ^3.0",
|
||||
"myclabs/deep-copy": "^1.7",
|
||||
"paragonie/random_compat": "^1.4|^2.0|^9.99.99",
|
||||
"php": "^5.6 || ^7.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
|
||||
"psr/http-message": "^1.0 || ^2.0",
|
||||
"psr/log": "^1.0 || ^2.0 || ^3.0",
|
||||
"setasign/fpdi": "^2.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"mockery/mockery": "^1.3.0",
|
||||
"mpdf/qrcode": "^1.1.0",
|
||||
"squizlabs/php_codesniffer": "^3.5.0",
|
||||
"tracy/tracy": "~2.5",
|
||||
"yoast/phpunit-polyfills": "^1.0"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-bcmath": "Needed for generation of some types of barcodes",
|
||||
"ext-xml": "Needed mainly for SVG manipulation",
|
||||
"ext-zlib": "Needed for compression of embedded resources, such as fonts"
|
||||
},
|
||||
"time": "2023-11-07T13:52:14+00:00",
|
||||
"type": "library",
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
"files": [
|
||||
"src/functions.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"Mpdf\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"GPL-2.0-only"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Matěj Humpál",
|
||||
"role": "Developer, maintainer"
|
||||
},
|
||||
{
|
||||
"name": "Ian Back",
|
||||
"role": "Developer (retired)"
|
||||
}
|
||||
],
|
||||
"description": "PHP library generating PDF files from UTF-8 encoded HTML",
|
||||
"homepage": "https://mpdf.github.io",
|
||||
"keywords": [
|
||||
"pdf",
|
||||
"php",
|
||||
"utf-8"
|
||||
],
|
||||
"support": {
|
||||
"docs": "http://mpdf.github.io",
|
||||
"issues": "https://github.com/mpdf/mpdf/issues",
|
||||
"source": "https://github.com/mpdf/mpdf"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://www.paypal.me/mpdf",
|
||||
"type": "custom"
|
||||
}
|
||||
],
|
||||
"install-path": "../mpdf/mpdf"
|
||||
},
|
||||
{
|
||||
"name": "mpdf/psr-http-message-shim",
|
||||
"version": "1.0.0",
|
||||
"version_normalized": "1.0.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/mpdf/psr-http-message-shim.git",
|
||||
"reference": "3206e6b80b6d2479e148ee497e9f2bebadc919db"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/mpdf/psr-http-message-shim/zipball/3206e6b80b6d2479e148ee497e9f2bebadc919db",
|
||||
"reference": "3206e6b80b6d2479e148ee497e9f2bebadc919db",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"psr/http-message": "^1.0"
|
||||
},
|
||||
"time": "2023-09-01T05:59:47+00:00",
|
||||
"type": "library",
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Mpdf\\PsrHttpMessageShim\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Mark Dorison",
|
||||
"email": "mark@chromatichq.com"
|
||||
},
|
||||
{
|
||||
"name": "Kristofer Widholm",
|
||||
"email": "kristofer@chromatichq.com"
|
||||
},
|
||||
{
|
||||
"name": "Nigel Cunningham",
|
||||
"email": "nigel.cunningham@technocrat.com.au"
|
||||
}
|
||||
],
|
||||
"description": "Shim to allow support of different psr/message versions.",
|
||||
"support": {
|
||||
"issues": "https://github.com/mpdf/psr-http-message-shim/issues",
|
||||
"source": "https://github.com/mpdf/psr-http-message-shim/tree/1.0.0"
|
||||
},
|
||||
"install-path": "../mpdf/psr-http-message-shim"
|
||||
},
|
||||
{
|
||||
"name": "mpdf/psr-log-aware-trait",
|
||||
"version": "v3.0.0",
|
||||
"version_normalized": "3.0.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/mpdf/psr-log-aware-trait.git",
|
||||
"reference": "a633da6065e946cc491e1c962850344bb0bf3e78"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/mpdf/psr-log-aware-trait/zipball/a633da6065e946cc491e1c962850344bb0bf3e78",
|
||||
"reference": "a633da6065e946cc491e1c962850344bb0bf3e78",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"psr/log": "^3.0"
|
||||
},
|
||||
"time": "2023-05-03T06:19:36+00:00",
|
||||
"type": "library",
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Mpdf\\PsrLogAwareTrait\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Mark Dorison",
|
||||
"email": "mark@chromatichq.com"
|
||||
},
|
||||
{
|
||||
"name": "Kristofer Widholm",
|
||||
"email": "kristofer@chromatichq.com"
|
||||
}
|
||||
],
|
||||
"description": "Trait to allow support of different psr/log versions.",
|
||||
"support": {
|
||||
"issues": "https://github.com/mpdf/psr-log-aware-trait/issues",
|
||||
"source": "https://github.com/mpdf/psr-log-aware-trait/tree/v3.0.0"
|
||||
},
|
||||
"install-path": "../mpdf/psr-log-aware-trait"
|
||||
},
|
||||
{
|
||||
"name": "myclabs/deep-copy",
|
||||
"version": "1.11.1",
|
||||
|
|
@ -3701,6 +3883,59 @@
|
|||
},
|
||||
"install-path": "../paragonie/constant_time_encoding"
|
||||
},
|
||||
{
|
||||
"name": "paragonie/random_compat",
|
||||
"version": "v9.99.100",
|
||||
"version_normalized": "9.99.100.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/paragonie/random_compat.git",
|
||||
"reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
|
||||
"reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">= 7"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "4.*|5.*",
|
||||
"vimeo/psalm": "^1"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
|
||||
},
|
||||
"time": "2020-10-15T08:29:30+00:00",
|
||||
"type": "library",
|
||||
"installation-source": "dist",
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Paragon Initiative Enterprises",
|
||||
"email": "security@paragonie.com",
|
||||
"homepage": "https://paragonie.com"
|
||||
}
|
||||
],
|
||||
"description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
|
||||
"keywords": [
|
||||
"csprng",
|
||||
"polyfill",
|
||||
"pseudorandom",
|
||||
"random"
|
||||
],
|
||||
"support": {
|
||||
"email": "info@paragonie.com",
|
||||
"issues": "https://github.com/paragonie/random_compat/issues",
|
||||
"source": "https://github.com/paragonie/random_compat"
|
||||
},
|
||||
"install-path": "../paragonie/random_compat"
|
||||
},
|
||||
{
|
||||
"name": "phar-io/manifest",
|
||||
"version": "2.0.3",
|
||||
|
|
@ -6302,6 +6537,81 @@
|
|||
],
|
||||
"install-path": "../sebastian/version"
|
||||
},
|
||||
{
|
||||
"name": "setasign/fpdi",
|
||||
"version": "v2.6.0",
|
||||
"version_normalized": "2.6.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Setasign/FPDI.git",
|
||||
"reference": "a6db878129ec6c7e141316ee71872923e7f1b7ad"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/Setasign/FPDI/zipball/a6db878129ec6c7e141316ee71872923e7f1b7ad",
|
||||
"reference": "a6db878129ec6c7e141316ee71872923e7f1b7ad",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"ext-zlib": "*",
|
||||
"php": "^5.6 || ^7.0 || ^8.0"
|
||||
},
|
||||
"conflict": {
|
||||
"setasign/tfpdf": "<1.31"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "~5.7",
|
||||
"setasign/fpdf": "~1.8.6",
|
||||
"setasign/tfpdf": "~1.33",
|
||||
"squizlabs/php_codesniffer": "^3.5",
|
||||
"tecnickcom/tcpdf": "~6.2"
|
||||
},
|
||||
"suggest": {
|
||||
"setasign/fpdf": "FPDI will extend this class but as it is also possible to use TCPDF or tFPDF as an alternative. There's no fixed dependency configured."
|
||||
},
|
||||
"time": "2023-12-11T16:03:32+00:00",
|
||||
"type": "library",
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"setasign\\Fpdi\\": "src/"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Jan Slabon",
|
||||
"email": "jan.slabon@setasign.com",
|
||||
"homepage": "https://www.setasign.com"
|
||||
},
|
||||
{
|
||||
"name": "Maximilian Kresse",
|
||||
"email": "maximilian.kresse@setasign.com",
|
||||
"homepage": "https://www.setasign.com"
|
||||
}
|
||||
],
|
||||
"description": "FPDI is a collection of PHP classes facilitating developers to read pages from existing PDF documents and use them as templates in FPDF. Because it is also possible to use FPDI with TCPDF, there are no fixed dependencies defined. Please see suggestions for packages which evaluates the dependencies automatically.",
|
||||
"homepage": "https://www.setasign.com/fpdi",
|
||||
"keywords": [
|
||||
"fpdf",
|
||||
"fpdi",
|
||||
"pdf"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/Setasign/FPDI/issues",
|
||||
"source": "https://github.com/Setasign/FPDI/tree/v2.6.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/setasign/fpdi",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"install-path": "../setasign/fpdi"
|
||||
},
|
||||
{
|
||||
"name": "spatie/backtrace",
|
||||
"version": "1.4.0",
|
||||
|
|
@ -9808,7 +10118,6 @@
|
|||
"laravel/pint",
|
||||
"laravel/sail",
|
||||
"mockery/mockery",
|
||||
"myclabs/deep-copy",
|
||||
"nunomaduro/collision",
|
||||
"phar-io/manifest",
|
||||
"phar-io/version",
|
||||
|
|
|
|||
51
vendor/composer/installed.php
vendored
51
vendor/composer/installed.php
vendored
|
|
@ -3,7 +3,7 @@
|
|||
'name' => 'laravel/laravel',
|
||||
'pretty_version' => 'dev-master',
|
||||
'version' => 'dev-master',
|
||||
'reference' => 'b29188b29ea6c7e18c4a9303a174fb6d2abc6b64',
|
||||
'reference' => '19eaa4ce1880ee09ff69b96a79e4e972e1d29aac',
|
||||
'type' => 'project',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
'aliases' => array(),
|
||||
|
|
@ -427,7 +427,7 @@
|
|||
'laravel/laravel' => array(
|
||||
'pretty_version' => 'dev-master',
|
||||
'version' => 'dev-master',
|
||||
'reference' => 'b29188b29ea6c7e18c4a9303a174fb6d2abc6b64',
|
||||
'reference' => '19eaa4ce1880ee09ff69b96a79e4e972e1d29aac',
|
||||
'type' => 'project',
|
||||
'install_path' => __DIR__ . '/../../',
|
||||
'aliases' => array(),
|
||||
|
|
@ -577,6 +577,33 @@
|
|||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'mpdf/mpdf' => array(
|
||||
'pretty_version' => 'v8.2.2',
|
||||
'version' => '8.2.2.0',
|
||||
'reference' => '596a87b876d7793be7be060a8ac13424de120dd5',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../mpdf/mpdf',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'mpdf/psr-http-message-shim' => array(
|
||||
'pretty_version' => '1.0.0',
|
||||
'version' => '1.0.0.0',
|
||||
'reference' => '3206e6b80b6d2479e148ee497e9f2bebadc919db',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../mpdf/psr-http-message-shim',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'mpdf/psr-log-aware-trait' => array(
|
||||
'pretty_version' => 'v3.0.0',
|
||||
'version' => '3.0.0.0',
|
||||
'reference' => 'a633da6065e946cc491e1c962850344bb0bf3e78',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../mpdf/psr-log-aware-trait',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'mtdowling/cron-expression' => array(
|
||||
'dev_requirement' => false,
|
||||
'replaced' => array(
|
||||
|
|
@ -590,7 +617,7 @@
|
|||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../myclabs/deep-copy',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => true,
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'myclabs/php-enum' => array(
|
||||
'pretty_version' => '1.8.4',
|
||||
|
|
@ -664,6 +691,15 @@
|
|||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'paragonie/random_compat' => array(
|
||||
'pretty_version' => 'v9.99.100',
|
||||
'version' => '9.99.100.0',
|
||||
'reference' => '996434e5492cb4c3edcb9168db6fbb1359ef965a',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../paragonie/random_compat',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'phar-io/manifest' => array(
|
||||
'pretty_version' => '2.0.3',
|
||||
'version' => '2.0.3.0',
|
||||
|
|
@ -1085,6 +1121,15 @@
|
|||
'aliases' => array(),
|
||||
'dev_requirement' => true,
|
||||
),
|
||||
'setasign/fpdi' => array(
|
||||
'pretty_version' => 'v2.6.0',
|
||||
'version' => '2.6.0.0',
|
||||
'reference' => 'a6db878129ec6c7e141316ee71872923e7f1b7ad',
|
||||
'type' => 'library',
|
||||
'install_path' => __DIR__ . '/../setasign/fpdi',
|
||||
'aliases' => array(),
|
||||
'dev_requirement' => false,
|
||||
),
|
||||
'spatie/backtrace' => array(
|
||||
'pretty_version' => '1.4.0',
|
||||
'version' => '1.4.0.0',
|
||||
|
|
|
|||
53
vendor/mpdf/mpdf/.github/CONTRIBUTING.md
vendored
Normal file
53
vendor/mpdf/mpdf/.github/CONTRIBUTING.md
vendored
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
Contributing
|
||||
============
|
||||
|
||||
Issue tracker
|
||||
-------------
|
||||
|
||||
The Issue tracker serves mainly as a place to report bugs and request new features.
|
||||
Please do not abuse it as a general questions or troubleshooting location.
|
||||
|
||||
General troubleshooting
|
||||
-------------
|
||||
|
||||
For these questions please use [Discussions](https://github.com/mpdf/mpdf/discussions). Add your enquiry
|
||||
to appropriate category and as always, include a reproducible code example when applicable (see code example guidelines below).
|
||||
|
||||
You can also use the [mpdf tag](https://stackoverflow.com/questions/tagged/mpdf)
|
||||
at [Stack Overflow](https://stackoverflow.com/)
|
||||
as the StackOverflow user base is more likely to answer you in a timely manner.
|
||||
When doing so, make sure you comply to StackOverflow question guidelines.
|
||||
|
||||
Bug reports
|
||||
-------------
|
||||
|
||||
* Bug reports **MUST** contain a small example in php/html that reproduces the bug.
|
||||
* The code example **MUST** be reproducible by copy&paste assuming composer dependencies are installed. That means:
|
||||
* No calling unrelated funcions,
|
||||
* an actual final HTML code has to be present, pasting a template file is not enough,
|
||||
* if the bug considers import or fonts, example source PDF/TTF/etc files have to be included.
|
||||
* Failing to provide necessary information or not using the issue template will cause the issue to be closed until required information is provided.
|
||||
* Please report one feature or one bug per issue.
|
||||
|
||||
Feature requests
|
||||
-------------
|
||||
|
||||
Feature requests have to be labeled as such and have to include reasoning for the change in question.
|
||||
|
||||
|
||||
Pull requests
|
||||
-------------
|
||||
|
||||
Pull requests should be always based on the default [development](https://github.com/mpdf/mpdf/tree/development)
|
||||
branch except for backports to older versions.
|
||||
|
||||
Guidelines:
|
||||
|
||||
* Use an aptly named feature branch for the Pull request.
|
||||
* Only files and lines affecting the scope of the Pull request must be affected.
|
||||
* Make small, *atomic* commits that keep the smallest possible related code changes together.
|
||||
* Code must be accompanied by a unit test testing expected behaviour whenever possible.
|
||||
* To be incorporated, the PR should contain a change in the CHANGELOG.md file describing itself
|
||||
|
||||
When updating a PR, do not create a new one, just `git push --force` to your former feature branch, the PR will
|
||||
update itself.
|
||||
1
vendor/mpdf/mpdf/.github/FUNDING.yml
vendored
Normal file
1
vendor/mpdf/mpdf/.github/FUNDING.yml
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
custom: https://www.paypal.me/mpdf
|
||||
35
vendor/mpdf/mpdf/.github/ISSUE_TEMPLATE/01_bug_report.yml
vendored
Normal file
35
vendor/mpdf/mpdf/.github/ISSUE_TEMPLATE/01_bug_report.yml
vendored
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
name: Bug report 🐛
|
||||
description: The library does not work as expected
|
||||
body:
|
||||
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
label: Guidelines
|
||||
description: Please confirm this is a bug report and not general troubleshooting.
|
||||
options:
|
||||
- label: I understand that [if I fail to adhere to contribution guidelines and/or fail to provide all required details, this issue may be closed without review](https://github.com/mpdf/mpdf/blob/development/.github/CONTRIBUTING.md).
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Description of the bug
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: input
|
||||
attributes:
|
||||
label: mPDF version
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: input
|
||||
attributes:
|
||||
label: PHP Version and environment (server type, cli provider etc., enclosing libraries and their respective versions)
|
||||
validations:
|
||||
required: true
|
||||
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Reproducible PHP+CSS+HTML snippet suffering by the error
|
||||
validations:
|
||||
required: true
|
||||
8
vendor/mpdf/mpdf/.github/ISSUE_TEMPLATE/02_feature_request.yml
vendored
Normal file
8
vendor/mpdf/mpdf/.github/ISSUE_TEMPLATE/02_feature_request.yml
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
name: Feature request 🚀
|
||||
description: I would like to have a new functionality added
|
||||
body:
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Please describe the new functionality as best as you can.
|
||||
validations:
|
||||
required: true
|
||||
8
vendor/mpdf/mpdf/.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
8
vendor/mpdf/mpdf/.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
blank_issues_enabled: false
|
||||
contact_links:
|
||||
- name: General questions and troubleshooting ❓
|
||||
url: https://github.com/mpdf/mpdf/discussions
|
||||
about: You can use Github Discussions for general questions and troubleshooting. Please note that asking at Stack Overflow will probably be more successful.
|
||||
- name: QA at Stack Overflow ❓
|
||||
url: https://stackoverflow.com/questions/tagged/mpdf
|
||||
about: Ask at Stack Overflow for a greater chance of a quick and correct answer to your questions. Make sure to comply to SO rules, terms and conditions.
|
||||
6
vendor/mpdf/mpdf/.github/SECURITY.md
vendored
Normal file
6
vendor/mpdf/mpdf/.github/SECURITY.md
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
How to disclose potential security issues
|
||||
============
|
||||
|
||||
As mPDF does not have a domain or a dedicated contact apart from its Github repository, to prevent
|
||||
disclosing maintainers' contacts publicly, please create an Issue about the security issue with means to contact you.
|
||||
We will reach out to you as soon as possible.
|
||||
42
vendor/mpdf/mpdf/.github/workflows/coverage.yml
vendored
Normal file
42
vendor/mpdf/mpdf/.github/workflows/coverage.yml
vendored
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
|
||||
|
||||
name: "Code coverage"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- "development"
|
||||
- "coverage"
|
||||
|
||||
jobs:
|
||||
|
||||
coverage:
|
||||
|
||||
name: "Code coverage"
|
||||
|
||||
runs-on: ${{ matrix.operating-system }}
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
php-version:
|
||||
- "7.4"
|
||||
|
||||
operating-system: [ubuntu-latest]
|
||||
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
uses: "actions/checkout@v3"
|
||||
|
||||
- name: "Install PHP"
|
||||
uses: "shivammathur/setup-php@v2"
|
||||
with:
|
||||
coverage: "xdebug"
|
||||
php-version: "${{ matrix.php-version }}"
|
||||
extensions: "mbstring, gd, bcmath, bz2"
|
||||
tools: composer:v2
|
||||
|
||||
- name: "Install dependencies"
|
||||
run: "composer install --no-interaction --no-progress"
|
||||
|
||||
- name: "Code coverage"
|
||||
run: composer coverage
|
||||
43
vendor/mpdf/mpdf/.github/workflows/cs.yml
vendored
Normal file
43
vendor/mpdf/mpdf/.github/workflows/cs.yml
vendored
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
|
||||
|
||||
name: "Coding standard check"
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- "development"
|
||||
- "test"
|
||||
|
||||
jobs:
|
||||
|
||||
cs:
|
||||
|
||||
name: "Coding standard"
|
||||
|
||||
runs-on: ${{ matrix.operating-system }}
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
php-version:
|
||||
- "7.4"
|
||||
|
||||
operating-system: [ubuntu-latest]
|
||||
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
uses: "actions/checkout@v3"
|
||||
|
||||
- name: "Install PHP"
|
||||
uses: "shivammathur/setup-php@v2"
|
||||
with:
|
||||
coverage: "none"
|
||||
php-version: "${{ matrix.php-version }}"
|
||||
extensions: "mbstring"
|
||||
tools: composer:v2
|
||||
|
||||
- name: "Install dependencies"
|
||||
run: "composer install --no-interaction --no-progress"
|
||||
|
||||
- name: "CS"
|
||||
run: composer cs
|
||||
54
vendor/mpdf/mpdf/.github/workflows/tests.yml
vendored
Normal file
54
vendor/mpdf/mpdf/.github/workflows/tests.yml
vendored
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
|
||||
|
||||
name: "CI"
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- "master"
|
||||
- "development"
|
||||
- "test"
|
||||
|
||||
jobs:
|
||||
|
||||
tests:
|
||||
|
||||
name: "Tests"
|
||||
|
||||
runs-on: ${{ matrix.operating-system }}
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
php-version:
|
||||
- "5.6"
|
||||
- "7.0"
|
||||
- "7.1"
|
||||
- "7.2"
|
||||
- "7.3"
|
||||
- "7.4"
|
||||
- "8.0"
|
||||
- "8.1"
|
||||
- "8.2"
|
||||
- "8.3"
|
||||
operating-system: [ubuntu-latest, windows-latest]
|
||||
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
uses: "actions/checkout@v3"
|
||||
|
||||
- name: "Install PHP"
|
||||
uses: "shivammathur/setup-php@v2"
|
||||
with:
|
||||
coverage: "none"
|
||||
php-version: "${{ matrix.php-version }}"
|
||||
extensions: "mbstring, gd, bcmath, bz2"
|
||||
tools: composer:v2
|
||||
ini-values: error_reporting=-1
|
||||
|
||||
- name: "Install dependencies"
|
||||
run: "composer install --no-interaction --no-progress"
|
||||
|
||||
- name: "Tests"
|
||||
run: composer test
|
||||
2
vendor/mpdf/mpdf/.gitignore
vendored
Normal file
2
vendor/mpdf/mpdf/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
vendor/*
|
||||
composer.lock
|
||||
795
vendor/mpdf/mpdf/CHANGELOG.md
vendored
Normal file
795
vendor/mpdf/mpdf/CHANGELOG.md
vendored
Normal file
|
|
@ -0,0 +1,795 @@
|
|||
mPDF 8.2.x
|
||||
===========================
|
||||
|
||||
New features
|
||||
------------
|
||||
* Watermark text can now be colored using \Mpdf\Watermark DTO. \Mpdf\WatermarkImage DTO for images. (#1876)
|
||||
* Added support for `psr/http-message` v2 without dropping v1. (@markdorison, @apotek, @greg-1-anderson, @NigelCunningham #1907)
|
||||
* PHP 8.3 support in mPDF 8.2.1
|
||||
|
||||
mPDF 8.1.x
|
||||
===========================
|
||||
|
||||
New features
|
||||
------------
|
||||
|
||||
* Service container for internal services
|
||||
* Set /Lang entry for better accessibility when document language is available (@cuongmits, #1418)
|
||||
* More verbose helper methods for `Output`: `OutputBinaryData`, `OutputHttpInline`, `OutputHttpDownload`, `OutputFile` (since v8.1.2)
|
||||
* Set font-size to `auto` in textarea and input in active forms to resize the font-size (@ChrisB9, #1721)
|
||||
* PHP 8.2 support in mPDF 8.1.3
|
||||
* Added support for `psr/log` v3 without dropping v2. (@markdorison, @apotek, @greg-1-anderson, #1857)
|
||||
|
||||
Bugfixes
|
||||
--------
|
||||
|
||||
* Better exception message about fonts with MarkGlyphSets (Fix for #1408)
|
||||
* Updated Garuda font with fixed "k" character (Fix for #1440)
|
||||
* Testing and suppressing PNG file conversion errors
|
||||
* Prevent hyphenation of urls starting with https and e-mail addresses (@HKandulla, #1634)
|
||||
* Colorspace restrictor reads mode from Mpdf and works again (Fix for #1094)
|
||||
* Prevent exception when multiple columns wrap to next page
|
||||
* Update default `curlUserAgent` configuration variable from Firefox 13 to 108
|
||||
|
||||
mPDF 8.0.x
|
||||
===========================
|
||||
|
||||
* Ability to customize User-Agent header in the HTTP requests sent by cURL (@samuelecat, #1229)
|
||||
* Add Page Number Myanmar Language Support (@MinKyawNyunt, #1201)
|
||||
* new `Mpdf\Exception\FontException` extending base `MpdfException` was introduced and is thrown on Font manipulation
|
||||
* A bit cleaner exception messages for font-related errors
|
||||
* Use atomic cache writing. (@PATROMO, #1186)
|
||||
* Fix: "Undefined index: group" when calling MultiCell when using font without OTL data (@Kekos, #1213, #941)
|
||||
* Add C128RAW barcode type to create any barcode (ex: subtype change in middle of barcode) (#1124)
|
||||
* Add proxy support to curl
|
||||
* Fixed date and time format in the informations dictionary (#1083, @peterdevpl)
|
||||
* Checking allowed stream wrappers in CssManager
|
||||
* PHP 7.4 support (until final 7.4 release with composer --ignore-platform-reqs)
|
||||
* Improve debugging of remote content issues (@ribeirobreno)
|
||||
* Added `exposeVersion` configuration variable allowing to hide mPDF version from Producer tag and HTTP headers
|
||||
* Added the check for JPEG SOF header 0xFF 0xC1 (extended) (@jamiejones85)
|
||||
* Allows setting `none` as zoom mode in `SetDisplayMode` method, so that OpenAction is not written (#602)
|
||||
* Allowed image stream whitelist to be customised (#1005, thanks @jakejackson)
|
||||
* Fixed parsing of top-left-bottom-right CSS rules with !important (#1009)
|
||||
* Fixed skipping ordered list numbering with page-break-inside: avoid (#339)
|
||||
* Compound classes selector support, like `.one.two` or `div.message.special` (#538, @peterdevpl)
|
||||
* Fixed CMYK colors in text-shadow (#1115, @lexilya)
|
||||
* Skip non supported wrappers when resolving paths (#1204, @MarkVaughn)
|
||||
* Fixed SVGs using a style tag, has styles ignored ( Requires ext-dom ) (#450, @antman3351)
|
||||
* Allows `{nb}`, `{nbpg}`, `{PAGENO}` and `{DATE ...}` substitution in body (#172 and #267, @Dasc3er)
|
||||
* Cache now creates a dedicated subdirectory `/mpdf`.
|
||||
* It is possible to disable automatic cache cleanup with `cacheCleanupInterval` config variable
|
||||
* PHP 8.0 is supported since 8.0.10 (#1263)
|
||||
* Fix: First header of named page is added twice (@antman3351, #1320)
|
||||
* Added `curlExecutionTimeout` configuration variable allowing to `CURLOPT_TIMEOUT` when fetching remote content
|
||||
* Fix: Not all combinations were generated for more than three compound classes (@JeppeKnockaert)
|
||||
* Added `quiet_zone_left` and `quiet_zone_right` to barcodes which support quiet zones in order to customize its width
|
||||
* Updated `CssManager` to use the `RemoteContentFetcher` class instead of `curl` natively (@greew)
|
||||
* Added optional `continue2pages` parameter to `SetDocTemplate` method, allowing a template to continue the last 2 pages alternately (@bmg-ruudv)
|
||||
* Ensure that all digits of a string are hexadecimal before decoding in ColorConverter (@derklaro)
|
||||
* Fix: Using mpdf in phar package leads to weird errors (#1504, @sandreas)
|
||||
* WEBP images support (#1525)
|
||||
|
||||
|
||||
mPDF 8.0.0
|
||||
===========================
|
||||
|
||||
### 15/03/2019
|
||||
|
||||
* Updated FPDI dependency to version 2 (thanks a lot, @JanSlabon)
|
||||
- removed `SetImportUse` method
|
||||
- case of `ImportPage` method changed to `importPage`
|
||||
- similarly, case of `setSourceFile` and `useTemplate` was changed to a lowercase first letter.
|
||||
- signature of `importPage` changed
|
||||
- returned value of `useTemplate` changed
|
||||
* Moved QRCode generating code portions to external package _mpdf/qrcode_
|
||||
- This reduced package size considerably (ca 6MB)
|
||||
* Fraction sizes without leading zeros allowed for font sizes (#973, thanks @peterdevpl)
|
||||
* WriteHTML is now strict about used `$mode` parameter (#915, thanks, @tomtomau)
|
||||
* Fixed regression in nested tables (#860, thanks, @machour)
|
||||
* Scientific notation handling in CSS font sizes (#753, thanks, @peterdevpl)
|
||||
|
||||
|
||||
mPDF 7.1.x
|
||||
===========================
|
||||
|
||||
* PHAR security issue fixed (thanks, @jakejackson)
|
||||
* Font temporary data saved as JSON instead of generating PHP files (thanks, @jakejackson)
|
||||
* cURL handling enhancements (thanks, @jakejackson)
|
||||
* SVG parsing fixes (thanks, @achretien)
|
||||
* Write PDF content with *Writer service classes
|
||||
* PHP 7.3 is supported
|
||||
* Added myclabs/deepcopy dependency, fixed TOC page numbering (thanks, @jakejackson)
|
||||
* Custom color for QR codes
|
||||
* Added support for orientation config key
|
||||
* Code and tests cleanups and enhancements
|
||||
- PHPUnit dedicated assertions (thanks, @carusogabriel)
|
||||
- WriteHTML part constants (thanks, @tomtomau)
|
||||
- Various notice fixes (kudos to all respective authors)
|
||||
|
||||
mPDF 7.0.x
|
||||
===========================
|
||||
|
||||
* Allow passing file content or file path to `SetAssociatedFiles` (#558)
|
||||
* Allowed ^1.4 and ^2.0 of paragon/random_compat to allow wider usage
|
||||
* Fix of undefined _getImage function (#539)
|
||||
* Code cleanup
|
||||
* Better writable rights for temp dir validation (#534)
|
||||
* Fix displaying dollar character in footer with core fonts (#520)
|
||||
* Fixed missed code2utf call (#531)
|
||||
* Refactored and cleaned-up classes and subnamespaces
|
||||
|
||||
|
||||
mPDF 7.0.0
|
||||
===========================
|
||||
|
||||
### 19/10/2017
|
||||
|
||||
Backward incompatible changes
|
||||
-----------------------------
|
||||
|
||||
- PHP `^5.6 || ~7.0.0 || ~7.1.0 || ~7.2.0` is required.
|
||||
- Entire project moved under `Mpdf` namespace
|
||||
- Practically all classes renamed to use `PascalCase` and named to be more verbose
|
||||
- Changed directory structure to comply to `PSR-4`
|
||||
- Removed explicit require calls, replaced with Composer autoloading
|
||||
- Removed configuration files
|
||||
- All configuration now done via `__construct` parameter (see below)
|
||||
- Changed `\Mpdf\Mpdf` constructor signature
|
||||
- Class now accepts only single array `$config` parameter
|
||||
- Array keys are former `config.php` and `config_fonts.php` properties
|
||||
- Additionally, former constructor parameters can be used as keys
|
||||
- `tempDir` directory now must be writable, otherwise an exception is thrown
|
||||
- ICC profile is loaded as entire path to file (to prevent a need to write inside vendor directory)
|
||||
- Moved examples to separate repository
|
||||
- Moved `TextVars` constants to separate class
|
||||
- Moved border constants to separate class
|
||||
- `scriptToLang` and `langToFont` in separate interfaced class methods
|
||||
- Will now throw an exception when `mbstring.func_overload` is set
|
||||
- Moved Glyph operator `GF_` constants in separate `\Mpdf\Fonts\GlyphOperator` class
|
||||
- All methods in Barcode class renamed to camelCase including public `dec_to_hex` and `hex_to_dec`
|
||||
- Decimal conversion methods (to roman, cjk, etc.) were moved to classes in `\Mpdf\Conversion` namespace
|
||||
- Images in PHP variables (`<img src="var:smileyface">`) were moved from direct Mpdf properties to `Mpdf::$imageVars` public property array
|
||||
- Removed global `_SVG_AUTOFONT` and `_SVG_CLASSES` constants in favor of `svgAutoFont` and `svgClasses` configuration keys
|
||||
- Moved global `_testIntersect`, `_testIntersectCircle` and `calc_bezier_bbox` fucntions inside `Svg` class as private methods.
|
||||
- Changed names to camelCase without underscores and to `computeBezierBoundingBox`
|
||||
- Security: Embedded files via `<annotation>` custom tag must be explicitly allowed via `allowAnnotationFiles` configuration key
|
||||
- `fontDir` property of Mpdf class is private and must be accessed via configuration variable with array of paths or `AddFontDirectory` method
|
||||
- QR code `<barcode>` element now treats `\r\n` and `\n` as actual line breaks
|
||||
- cURL is prefered over socket when downloading images.
|
||||
- Removed globally defined functions from `functions.php` in favor of `\Mpdf\Utils` classes `PdfDate` and `UtfString`.
|
||||
- Unused global functions were removed entirely.
|
||||
|
||||
|
||||
Removed features
|
||||
----------------
|
||||
|
||||
- Progressbar support
|
||||
- JpGraph support
|
||||
- `error_reporting` changes
|
||||
- Timezone changes
|
||||
- `compress.php` utility
|
||||
- `_MPDF_PATH` and `_MPDF_URI` constants
|
||||
- `_MPDF_TEMP_PATH` constant in favor of `tempDir` configuration variable
|
||||
- `_MPDF_TTFONTDATAPATH` in favor of `tempDir` configuration variable
|
||||
- `_MPDFK` constant in favor of `\Mpdf\Mpdf::SCALE` class constant
|
||||
- `FONT_DESCRIPTOR` constant in favor of `fontDescriptor` configuration variable
|
||||
- `_MPDF_SYSTEM_TTFONTS` constant in favor of `fontDir` configuration variable with array of paths or `AddFontDirectory` method
|
||||
- HTML output of error messages and debugs
|
||||
- Formerly deprecated methods
|
||||
|
||||
|
||||
Fixes and code enhancements
|
||||
----------------------------
|
||||
|
||||
- Fixed joining arab letters
|
||||
- Fixed redeclared `unicode_hex` function
|
||||
- Converted arrays to short syntax
|
||||
- Refactored and tested color handling with potential conversion fixes in `hsl*()` color definitions
|
||||
- Refactored `Barcode` class with separate class in `Mpdf\Barcode` namespace for each barcode type
|
||||
- Fixed colsum calculation for different locales (by @flow-control in #491)
|
||||
- Image type guessing from content separated to its own class
|
||||
|
||||
|
||||
New features
|
||||
------------
|
||||
|
||||
- Refactored caching (custom `Cache` and `FontCache` classes)
|
||||
- Implemented `Psr\Log\LoggerAware` interface
|
||||
- All debug and additional messages are now sent to the logger
|
||||
- Messages can be filtered based on `\Mpdf\Log\Context` class constants
|
||||
- `FontFileFinder` class allowing to specify multiple paths to search for fonts
|
||||
- `MpdfException` now extends `ErrorException` to allow specifying place in code where error occured
|
||||
- Generating font metrics moved to separate class
|
||||
- Added `\Mpdf\Output\Destination` class with verbose output destination constants
|
||||
- Availability to set custom default CSS file
|
||||
- Availability to set custom hyphenation dictionary file
|
||||
- Refactored code portions to new "separate" classes:
|
||||
- `Mpdf\Color\*` classes
|
||||
- `ColorConvertor`
|
||||
- `ColorModeConvertor`
|
||||
- `ColorSpaceRestrictor`
|
||||
- `Mpdf\SizeConvertor`
|
||||
- `Mpdf\Hyphenator`
|
||||
- `Mpdf\Image\ImageProcessor`
|
||||
- `Mpdf\Image\ImageTypeGuesser`
|
||||
- `Mpdf\Conversion\*` classes
|
||||
- Custom watermark angle with `watermarkAngle` configuration variable
|
||||
- Custom document properties (idea by @zarubik in #142)
|
||||
- PDF/A-3 associated files + additional xmp rdf (by @chab in #130)
|
||||
- Additional font directories can be added via `addFontDir` method
|
||||
- Introduced `cleanup` method which restores original `mb_` encoding settings (see #421)
|
||||
- QR code `<barcode>` element now treats `\r\n` and `\n` as actual line breaks
|
||||
- Customizable following of 3xx HTTP redirects, validation of SSL certificates, cURL timeout.
|
||||
- `curlFollowLocation`
|
||||
- `curlAllowUnsafeSslRequests`
|
||||
- `curlTimeout`
|
||||
- QR codes can be generated without a border using `disableborder="1"` HTML attribute in `<barcode>` tag
|
||||
|
||||
|
||||
Git repository enhancements
|
||||
---------------------------
|
||||
|
||||
- Added contributing guidelines
|
||||
- Added Issue template
|
||||
|
||||
|
||||
mPDF 6.1.0
|
||||
===========================
|
||||
|
||||
### 26/04/2016
|
||||
|
||||
- Composer updates
|
||||
- First release officially supporting Composer
|
||||
- Updated license in composer.json
|
||||
- Chmod 777 on dirs `ttfontdata`, `tmp`, `graph_cache` after composer install
|
||||
- Requiring PHP 5.4.0+ with Composer
|
||||
- Code style
|
||||
- Reformated (almost) all PHP files to keep basic code style
|
||||
- Removed trailing whitespaces
|
||||
- Converted all txt, php, css, and htm files to utf8
|
||||
- Removed closing PHP tags
|
||||
- Change all else if calls to elseif
|
||||
- Added base PHPUnit tests
|
||||
- Added Travis CI integration with unit tests
|
||||
- Changed all `mPDF::Error` and `die()` calls to throwing `MpdfException`
|
||||
- PDF Import changes
|
||||
- FPDI updated to 1.6.0 to fix incompatible licenses
|
||||
- FPDI loaded from Composer or manually only
|
||||
- Removed iccprofiles/CMYK directory
|
||||
- Renamed example files: change spaces to underscores to make scripting easier
|
||||
- Fixed `LEDGER` and `TABLOID` paper sizes
|
||||
- Implemented static cache for mpdf function `ConvertColor`.
|
||||
- Removed PHP4 style constructors
|
||||
- Work with HTML tags separated to `Tag` class
|
||||
- Fixed most Strict standards PHP errors
|
||||
- Add config constant so we can define custom font data
|
||||
- HTML
|
||||
- fax & tel support in href attribute
|
||||
- Check $html in `$mpdf->WriteHTML()` to see if it is an integer, float, string, boolean or
|
||||
a class with `__toString()` and cast to a string, otherwise throw exception.
|
||||
- PHP 7
|
||||
- Fix getting image from internal variable in PHP7 (4dcc2b4)
|
||||
- Fix PHP7 Fatal error: `'break' not in the 'loop' or 'switch' context` (002bb8a)
|
||||
- Fixed output file name for `D` and `I` output modes (issue #105, f297546)
|
||||
|
||||
mPDF 6.0
|
||||
===========================
|
||||
|
||||
### 20/12/2014
|
||||
|
||||
New features / Improvements
|
||||
---------------------------
|
||||
- Support for OpenTypeLayout tables / features for complex scripts and Advances Typography.
|
||||
- Improved bidirectional text handling.
|
||||
- Improved line-breaking, including for complex scripts e.g. Lao, Thai and Khmer.
|
||||
- Updated page-breaking options.
|
||||
- Automatic language mark-up and font selection using autoScriptToLang and autoLangToFont.
|
||||
- Kashida for text-justification in arabic scripts.
|
||||
- Index collation for non-ASCII characters.
|
||||
- Index mark-up allowing control over layout using CSS.
|
||||
- `{PAGENO}` and `{nbpg}` can use any of the number types as in list-style e.g. set in `<pagebreak>` using pagenumstyle.
|
||||
- CSS support for lists.
|
||||
- Default stylesheet - `mpdf.css` - updated.
|
||||
|
||||
Added CSS support
|
||||
-----------------
|
||||
- lang attribute selector e.g. :lang(fr), [lang="fr"]
|
||||
- font-variant-position
|
||||
- font-variant-caps
|
||||
- font-variant-ligatures
|
||||
- font-variant-numeric
|
||||
- font-variant-alternates - Only [normal | historical-forms] supported (i.e. most are NOT supported)
|
||||
- font-variant - as above, and except for: east-asian-variant-values, east-asian-width-values, ruby
|
||||
- font-language-override
|
||||
- font-feature-settings
|
||||
- text-outline is now supported on TD/TH tags
|
||||
- hebrew, khmer, cambodian, lao, and cjk-decimal recognised as values for "list-style-type" in numbered lists and page numbering.
|
||||
- list-style-image and list-style-position
|
||||
- transform (on `<img>` only)
|
||||
- text-decoration:overline
|
||||
- image-rendering
|
||||
- unicode-bidi (also `<bdi>` tag)
|
||||
- vertical-align can use lengths e.g. 0.5em
|
||||
- line-stacking-strategy
|
||||
- line-stacking-shift
|
||||
|
||||
mPDF 5.7.4
|
||||
================
|
||||
|
||||
### 15/12/2014
|
||||
|
||||
Bug Fixes & Minor Additions
|
||||
---------------------------
|
||||
- SVG images now support embedded images e.g. `<image xlink:href="image.png" width="100px" height="100px" />`
|
||||
- SVG images now supports `<tspan>` element e.g. `<tspan x,y,dx,dy,text-anchor >`, and also `<tref>`
|
||||
- SVG images now can use Autofont (see top of `classes/svg.php` file)
|
||||
- SVG images now has limited support for CSS classes (see top of `classes/svg.php` file)
|
||||
- SVG images - style inheritance improved
|
||||
- SVG images - improved handling of comments and other extraneous code
|
||||
- SVG images - fix to ensure opacity is reset before another element
|
||||
- SVG images - font-size not resetting after a `<text>` element
|
||||
- SVG radial gradients bug (if the focus [fx,fy] lies outside circle defined by [cx,cy] and r) cf. pservers-grad-15-b.svg
|
||||
- SVG allows spaces in attribute definitions in `<use>` or `<defs>` e.g. `<use x = "0" y = "0" xlink:href = "#s3" />`
|
||||
- SVG text which contains a `<` sign, it will break the text - now processed as `<` (despite the fact that this does not conform to XML spec)
|
||||
- SVG images - support automatic font selection and (minimal) use of CSS classes - cf. the defined constants at top of svg.php file
|
||||
- SVG images - text-anchor now supported as a CSS style, as well as an HTML attribute
|
||||
- CSS support for :nth-child() selector improved to fully support the draft CSS3 spec - http://www.w3.org/TR/selectors/#nth-child-pseudo
|
||||
[NB only works on table columns or rows]
|
||||
- text-indent when set as "em" - incorrectly calculated if last text in line in different font size than for block
|
||||
- CSS not applying cascaded styles on `<A>` elements - [changed MergeCSS() type to INLINE for 'A', LEGEND, METER and PROGRESS]
|
||||
- fix for underline/strikethrough/overline so that line position(s) are based correctly on font-size/font in nested situations
|
||||
- Error: Strict warning: Only variables should be passed by reference - in PHP5.5.9
|
||||
- bug accessing images from some servers (HTTP 403 Forbidden whn accessed using fopen etc.)
|
||||
- Setting page format incorrectly set default twice and missed some options
|
||||
- bug fixed in Overwrite() when specifying replacement as a string
|
||||
- barcode C93 - updated C93 code from TCPDF because of bug - incorrect checksum character for "153-2-4"
|
||||
- Tables - bug when using colspan across columns which may have a cell width specified
|
||||
cf. http://www.mpdf1.com/forum/discussion/2221/colspan-bug
|
||||
- Tables - cell height (when specified) is not resized when table is shrunk
|
||||
- Tables - if table width specified, but narrower than minimum cell wdith, and less than page width - table will expand to
|
||||
minimum cell width(s) as long as $keep_table_proportions = true
|
||||
- Tables - if using packTableData, and borders-collapse, wider border is overwriting content of adjacent cell
|
||||
Test case:
|
||||
```
|
||||
<table style="border-collapse: collapse;">
|
||||
<tr><td style="border-bottom: 42px solid #0FF; "> Hallo world </td></tr>
|
||||
<tr><td style="border-top: 14px solid #0F0; "> Hallo world </td></tr>
|
||||
</table>
|
||||
```
|
||||
- Images - image height is reset proportional to original if width is set to maximum e.g. `<img width="100%" height="20mm">`
|
||||
- URL handling changed to work with special characters in path fragments; affects `<a>` links, `<img>` images and
|
||||
CSS url() e.g background-image
|
||||
- also to ignore `../` included as a query value
|
||||
- Barcodes with bottom numerals e.g. EAN-13 - incorrect numeral size when using core fonts
|
||||
|
||||
--------------------------------
|
||||
|
||||
NB Spec. for embedded SVG images:
|
||||
as per http://www.w3.org/TR/2003/REC-SVG11-20030114/struct.html#ImageElement
|
||||
Attributes supported:
|
||||
- x
|
||||
- y
|
||||
- xlink:href (required) - can be jpeg, png or gif image - not vector (SVG or WMF) image
|
||||
- width (required)
|
||||
- height (required)
|
||||
- preserveAspectRatio
|
||||
|
||||
Note: all attribute names and values are case-sensitive
|
||||
width and height cannot be assigned by CSS - must be attributes
|
||||
|
||||
mPDF 5.7.3
|
||||
================
|
||||
|
||||
### 24/8/2014
|
||||
|
||||
Bug Fixes & Minor Additions
|
||||
---------------------------
|
||||
|
||||
- Tables - cellSpacing and cellPadding taking preference over CSS stylesheet
|
||||
- Tables - background images in table inside HTML Footer incorrectly positioned
|
||||
- Tables - cell in a nested table with a specified width, should determine width of parent table cell
|
||||
(cf. http://www.mpdf1.com/forum/discussion/1648/nested-table-bug-)
|
||||
- Tables - colspan (on a row after first row) exceeds number of columns in table
|
||||
- Gradients in Imported documents (mPDFI) causing error in some browsers
|
||||
- Fatal error after page-break-after:always on root level block element
|
||||
- Support for 'https/SSL' if file_get_contents_by_socket required (e.g. getting images with allow_url_fopen turned off)
|
||||
- Improved support for specified ports when getting external CSS stylesheets e.g. www.domain.com:80
|
||||
- error accessing local .css files with dummy queries (cache-busting) e.g. mpdfstyleA4.css?v=2.0.18.9
|
||||
- start of end tag in PRE incorrectly changed to <
|
||||
- error thrown when open.basedir restriction in effect (deleting temporary files)
|
||||
- image which forces pagebreak incorrectly positioned at top of page
|
||||
- [changes to avoid warning notices by checking if (isset(x)) before referencing it]
|
||||
- text with letter-spacing set inside table which needs to be resixed (shrunk) - letter-spacing was not adjusted
|
||||
- nested table incorrectly calculating width and unnecessarily wrapping text
|
||||
- vertical-align:super|sub can be nested using `<span>` elements
|
||||
- inline elements can be nested e.g. text `<sup>text<sup>13</sup>text</sup>` text
|
||||
- CSS vertical-align:0.5em (or %) now supported
|
||||
- underline and strikethrough now use the parent inline block baseline/fontsize/color for child inline elements *** change in behaviour
|
||||
(Adjusts line height to take account of superscript and subscript except in tables)
|
||||
- nested table incorrectly calculating width and unnecessarily wrapping text
|
||||
- tables - font size carrying over from one nested table to the next nested table
|
||||
- tables - border set as attribute on `<TABLE>` overrides border set as CSS on `<TD>`
|
||||
- tables - if table width set to 100% and one cell/column is empty with no padding/border, sizing incorrectly
|
||||
(http://www.mpdf1.com/forum/discussion/1886/td-fontsize-in-nested-table-bug-#Item_5)
|
||||
- `<main>` added as recognised tag
|
||||
- CSS style transform supported on `<img>` element (only)
|
||||
All transform functions are supported except matrix() i.e. translate(), translateX(), translateY(), skew(), skewX(), skewY(),
|
||||
scale(), scaleX(), scaleY(), rotate()
|
||||
NB When using Columns or Keep-with-table (use_kwt), cannot use transform
|
||||
- CSS background-color now supported on `<img>` element
|
||||
- @page :first not recognised unless @page {} has styles set
|
||||
- left/right margins not allowed on @page :first
|
||||
|
||||
mPDF 5.7.2
|
||||
================
|
||||
|
||||
### 28/12/2013
|
||||
|
||||
Bug Fixes
|
||||
---------
|
||||
|
||||
- `<tfoot>` not printing at all (since v5.7)
|
||||
- list-style incorrectly overriding list-style-type in cascading CSS
|
||||
- page-break-after:avoid not taking into account bottom padding and margin when estimating if next line can fit on page
|
||||
- images not displayed when using "https://" if images are referenced by src="//domain.com/image"
|
||||
- +aCJK incorrectly parsed when instantiating class e.g. new mpDF('ja+aCJK')
|
||||
- line-breaking - zero-width object at end of line (e.g. index entry) causing a space left untrimmed at end of line
|
||||
- ToC since v5.7 incorrectly handling non-ascii characters, entities or tags
|
||||
- cell height miscalculated when using hard-hyphenate
|
||||
- border colors set with transparency not working
|
||||
- transparency settings for stroke and fill interfering with one another
|
||||
- 'float' inside a HTML header/footer - not clearing the float before first line of text
|
||||
- error if script run across date change at midnight
|
||||
- temporary file name collisions (e.g. when processing images) if numerous users
|
||||
- `<watermarkimage>` position attribute not working
|
||||
- `<` (less-than sign) inside a PRE element, and NOT start of a valid tag, was incorrectly removed
|
||||
- file attachments not opening in Reader XI
|
||||
- JPG images not recognised if not containing JFIF or Exif markers
|
||||
- instance of preg_replace with /e modifier causing error in PHP 5.5
|
||||
- correctly handle CSS URLs with no scheme
|
||||
- Index entries causing errors when repeat entries are used within page-break-inside:avoid, rotated tables etc.
|
||||
- table with fixed width column and long word in cell set to colspan across this column (adding spare width to all columns)
|
||||
- incorrect hyphenation if multiple soft-hyphens on line before break
|
||||
- SVG images - objects contained in `<defs>` being displayed
|
||||
- SVG images - multiple, or quoted fonts e.g. style="font-family:'lucida grande', verdana" not recognised
|
||||
- SVG images - line with opacity=0 still visible (only in some PDF viewers/browsers)
|
||||
- text in an SVG image displaying with incorrect font in some PDF viewers/browsers
|
||||
- SVG images - fill:RGB(0,0,0) not recognised when uppercase
|
||||
- background images using data:image\/(jpeg|gif|png);base64 format - error when reading in stylesheet
|
||||
|
||||
New CSS support
|
||||
---------------
|
||||
|
||||
- added support for style="opacity:0.6;" in SVG images - previously only supported style="fill-opacity:0.6; stroke-opacity: 0.6;"
|
||||
- improved PNG image handling for some cases of alpha channel transparency
|
||||
- khmer, cambodian and lao recognised as list-style-type for numbered lists
|
||||
|
||||
SVG Images
|
||||
----------
|
||||
|
||||
- Limited support for `<use>` and `<defs>`
|
||||
|
||||
mPDF 5.7.1
|
||||
================
|
||||
## 01/09/2013
|
||||
|
||||
1) FILES: mpdf.php
|
||||
|
||||
Bug fix; Dollar sign enclosed by `<pre>` tag causing error.
|
||||
Test e.g.: `<pre>Test $1.00 Test</pre> <pre>Test $2.00 Test</pre> <pre>Test $3.00 Test</pre> <pre>Test $4.00 Test</pre>`
|
||||
|
||||
-----------------------------
|
||||
|
||||
2) FILES: includes/functions.php AND mpdf.php
|
||||
|
||||
Changes to `preg_replace` with `/e` modifier to use `preg_replace_callback`
|
||||
(/e depracated from PHP 5.5)
|
||||
|
||||
-----------------------------
|
||||
|
||||
3) FILES: classes/barcode.php
|
||||
|
||||
Small change to function `barcode_c128()` which allows ASCII 0 - 31 to be used in C128A e.g. chr(13) in:
|
||||
`<barcode code="5432
1068" type="C128A" />`
|
||||
|
||||
-----------------------------
|
||||
|
||||
4) FILES: mpdf.php
|
||||
|
||||
Using $use_kwt ("keep-[heading]-with-table") if `<h4></h4>` before table is on 2 lines and pagebreak occurs after first line
|
||||
the first line is displayed at the bottom of the 2nd page.
|
||||
Edited so that $use_kwt only works if the HEADING is only one line. Else ignores (but prints correctly)
|
||||
|
||||
-----------------------------
|
||||
|
||||
5) FILES: mpdf.php
|
||||
|
||||
Clearing old temporary files from `_MPDF_TEMP_PATH` will now ignore "hidden" files e.g. starting with a "`.`" `.htaccess`, `.gitignore` etc.
|
||||
and also leave `dummy.txt` alone
|
||||
|
||||
|
||||
mPDF 5.7
|
||||
===========================
|
||||
|
||||
### 14/07/2013
|
||||
|
||||
Files changed
|
||||
-------------
|
||||
- config.php
|
||||
- mpdf.php
|
||||
- classes/tocontents.php
|
||||
- classes/cssmgr.php
|
||||
- classes/svg.php
|
||||
- includes/functions.php
|
||||
- includes/out.php
|
||||
- examples/formsubmit.php [Important - Security update]
|
||||
|
||||
Updated Example Files in /examples/
|
||||
-----------------------------------
|
||||
|
||||
- All example files
|
||||
- mpdfstyleA4.css
|
||||
|
||||
config.php
|
||||
----------
|
||||
|
||||
Removed:
|
||||
- $this->hyphenateTables
|
||||
- $this->hyphenate
|
||||
- $this->orphansAllowed
|
||||
Edited:
|
||||
- "hyphens: manual" - Added to $this->defaultCSS
|
||||
- $this->allowedCSStags now includes '|TEXTCIRCLE|DOTTAB'
|
||||
New:
|
||||
- $this->decimal_align = array('DP'=>'.', 'DC'=>',', 'DM'=>"\xc2\xb7", 'DA'=>"\xd9\xab", 'DD'=>'-');
|
||||
- $this->h2toc = array('H1'=>0, 'H2'=>1, 'H3'=>2);
|
||||
- $this->h2bookmarks = array('H1'=>0, 'H2'=>1, 'H3'=>2);
|
||||
- $this->CJKforceend = false; // Forces overflowng punctuation to hang outside right margin (used with CJK script)
|
||||
|
||||
|
||||
Backwards compatability
|
||||
-----------------------
|
||||
|
||||
Changes in mPDF 5.7 may cause some changes to the way your documents appear. There are two main differences:
|
||||
1) Hyphenation. To retain appearance compatible with earlier versions, set the CSS property "hyphens: auto" whenever
|
||||
you previously used $mpdf->hyphenate=true;
|
||||
2) Table of Contents - appearance can now be controlled with CSS styles. By default, in mPDF 5.7, no styling is applied so you will get:
|
||||
- No indent (previous default of 5mm) - ($tocindent is ignored)
|
||||
- Any font, font-size set ($tocfont or $tocfontsize) will not work
|
||||
- HyperLinks will appear with your default appearance - usually blue and underlined
|
||||
- line spacing will be narrower (can use line-height or margin-top in CSS)
|
||||
|
||||
New features / Improvements
|
||||
---------------------------
|
||||
- Layout of Table of Content ToC now controlled using CSS styles
|
||||
- Text alignment on decimal mark inside tables
|
||||
- Automatically generated bookmarks and/or ToC entries from H1 - H6 tags
|
||||
- Support for unit of "rem" as size e.g. font-size: 1rem;
|
||||
- Origin and clipping for background images and gradients controlled by CSS i.e. background-origin, background-size, background-clip
|
||||
- Text-outline controlled by CSS (compatible with CSS3 spec.)
|
||||
- Use of `<dottab>` enhanced by custom CSS "outdent" property
|
||||
- Image HTML attributes `<img>` added: max-height, max-width, min-height and min-width
|
||||
- Spotcolor can now be defined as it is used e.g. color: spot(PANTONE 534 EC, 100%, 85, 65, 47, 9);
|
||||
- Lists - added support for "start" attribute in `<ol>` e.g. `<ol start="5">`
|
||||
- Hyphenation controlled using CSS, consistent with CSS3 spec.
|
||||
- Line breaking improved to avoid breaks within words where HTML tags are used e.g. H<sub>2<sub>0
|
||||
- Line breaking in CJK scripts improved (and ability to force hanging punctuation)
|
||||
- Numerals in a CJK script are kept together
|
||||
- RTL improved support for phrases containing numerals and \ and /
|
||||
- Bidi override codes supported - Right-to-Left Embedding [RLE] U+202B, Left-to-Right Embedding [LRE] U+202A,
|
||||
U+202C POP DIRECTIONAL FORMATTING (PDF)
|
||||
- Support for `<base href="">` in HTML - uses it to SetBasePath for relative URLs.
|
||||
- HTML tag - added support for `<wbr>` or `<wbr />` - converted to a soft-hyphen
|
||||
- CSS now takes precedence over HTML attribute e.g. `<table bgcolor="black" style="background-color:yellow">`
|
||||
|
||||
Added CSS support
|
||||
-----------------
|
||||
- max-height, max-width, min-height and min-width for images `<img>`
|
||||
- "hyphens: none|manual|auto" as per CSS3 spec.
|
||||
- Decimal mark alignment e.g. text-align: "." center;
|
||||
- "rem" accepted as a valid (font)size in CSS e.g. font-size: 1.5rem
|
||||
- text-outline, text-outline-width and text-outline-color supported everywhere except in tables (blur not supported)
|
||||
- background-origin, background-size, background-clip are now supported everywhere except in tables
|
||||
- "visibility: hidden|visible|printonly|screenonly" for inline elements e.g. `<span>`
|
||||
- Colors: device-cmyk(c,m,y,k) as per CSS3 spec. For consistency, device-cmyka also supported (not CSS3 spec)
|
||||
- "z-index" can be used to utilise layers in the PDF document
|
||||
- Custom CSS property added: "outdent" - opposite of indent
|
||||
|
||||
The HTML elements `<dottab>` and `<textcircle>` can now have CSS properties applied to them.
|
||||
|
||||
Bug fixes
|
||||
---------
|
||||
- SVG images - path including e.g. 1.234E-15 incorrectly parsed (not recognising capital E)
|
||||
- Tables - if a table starts when the Y position on page is below bottom margin caused endless loop
|
||||
- Float-ing DIVs - starting a float at bottom of page and it causes page break before anything output, second new page is forced
|
||||
- Tables - Warning notice now given in Table footer or header if `<tfoot>` placed after `<tbody>` and table spans page
|
||||
- Columns - block with border-width wider than the length of the border line, line overflows
|
||||
- Columns - block with no padding containing a block with borders but no backgound colour, borders not printed
|
||||
- Table in Columns - when background color set by surrounding block element - colour missing for height of half bottom border.
|
||||
- TOCpagebreakByArray() when called by function was not adding the pagebreak
|
||||
- Border around block element - dashed not showing correctly (not resetting linewidth between different edges)
|
||||
- Double border in table - when background colour set in surrounding block element - shows as black line between the 2 bits of double
|
||||
- Borders around DIVs - "double" border problem if not all 4 sides equally - fixed
|
||||
- Borders around DIVs - solid (and double) borders overlap as in tables - now fixed so mitred joins as in browser
|
||||
[Inadvertently improves borders in Columns because of change in LineCap]
|
||||
- Page numbering - $mpdf->pagenumSuffix etc not suppressed in HTML headers/footers if number suppressed
|
||||
- Page numbering - Page number total {nbpg} incorrect - e.g. showing decreasing numbers through document, when ToC present
|
||||
- RTL numerals - incorrectly reversing a number followed by a comma
|
||||
- Transform to uppercase/lowercase not working for chars > ASCII 128 when using core fonts
|
||||
- TOCpagebreak - Not setting TOC-FOOTER
|
||||
- TOCpagebreak - toc-even-header-name etc. not working
|
||||
- Parsing some relative URLs incorrectly
|
||||
- Textcircle - when moved to next page by "page-break-inside: avoid"
|
||||
- Bookmarks will now work if jump more than one level e.g. 0,2,1 Inserts a new blank entry at level 1
|
||||
- Paths to img or stylesheets - incorrectly reading "//www.domain.com" i.e. when starting with two /
|
||||
- data:image as background url() - incorrectly adjusting path on server if MPDF_PATH not specified (included in release mPDF 5.6.1)
|
||||
- Image problem if spaces or commas in path using http:// URL (included in release mPDF 5.6.1)
|
||||
- Image URL parsing rewritten to handle both urlencoded URLs and not urlencoded (included in release mPDF 5.6.1)
|
||||
- `<dottab>` fixed to allow color, font-size and font-family to be correctly used, avoid dots being moved to new page, and to work in RTL
|
||||
- Table {colsum} summed figures in table header
|
||||
- list-style-type (custom) colour not working
|
||||
- `<tocpagebreak>` toc-preHTML and toc-postHTML can now contain quotes
|
||||
|
||||
mPDF 5.6
|
||||
===========================
|
||||
|
||||
### 20/01/2013
|
||||
|
||||
Files changed
|
||||
-------------
|
||||
- mpdf.php
|
||||
- config.php
|
||||
- includes/functions.php
|
||||
- classes/meter.php
|
||||
- classes/directw.php
|
||||
|
||||
|
||||
config.php changes
|
||||
------------------
|
||||
|
||||
- $this->allowedCSStags - added HTML5 tags + textcircle AND
|
||||
- $this->outerblocktags - added HTML5 tags
|
||||
- $this->defaultCSS - added default CSS properties
|
||||
|
||||
New features / Improvements
|
||||
---------------------------
|
||||
CSS support added for for min-height, min-width, max-height and max-width in `<img>`
|
||||
|
||||
Images embedded in CSS
|
||||
- `<img src="data:image/gif;base64,....">` improved to make it more robust, and background: `url(data:image...` now added to work
|
||||
|
||||
HTML5 tags supported
|
||||
- as generic block elements: `<article><aside><details><figure><figcaption><footer><header><hgroup><nav><section><summary>`
|
||||
- as in-line elements: `<mark><time><meter><progress>`
|
||||
- `<mark>` has a default CSS set in config.php to yellow highlight
|
||||
- `<meter>` and `<progress>` support attributes as for HTML5
|
||||
- custom appearances for `<meter>` and `<progress>` can be made by editing `classes/meter.php` file
|
||||
- `<meter>` and `<progress>` suppress text inside the tags
|
||||
|
||||
Textcircle/Circular
|
||||
- font: "auto" added: automatically sizes text to fill semicircle (if both set) or full circle (if only one set)
|
||||
NB for this AND ALL CSS on `<textcircle>`: does not inherit CSS styles
|
||||
- attribute: divider="[characters including HTML entities]" added
|
||||
- `<textcircle r="30mm" top-text="Text Circular Text Circular" bottom-text="Text Circular Text Circular"
|
||||
divider=" • " style="font-size: auto" />`
|
||||
|
||||
» ’ ‚ „ are now included in "orphan"-management at the end of lines
|
||||
|
||||
Improved CJK line wrapping (if CJK character at end of line, breaks there rather than previous wordspace)
|
||||
|
||||
NB mPDF 5.5 added support for `<fieldset>` and `<legend>` (omitted from ChangeLog)
|
||||
|
||||
Bug fixes
|
||||
---------
|
||||
|
||||
- embedded fonts: Panose string incorrectly output as decimals - changed to hexadecimal
|
||||
Only a problem in limited circumstances.
|
||||
*****Need to delete all ttfontdata/ files in order for fix to have effect.
|
||||
- `<textCircle>` background white even when set to none/transparent
|
||||
- border="0" causing mPDF to add border to table CELLS as well as table
|
||||
- iteration counter in THEAD crashed in some circumstances
|
||||
- CSS color now supports spaces in the rgb() format e.g. border: 1px solid rgb(170, 170, 170);
|
||||
- CJK not working in table following changes made in v5.4
|
||||
- images fixed to work with Google Chart API (now mPDF does not urldecode the query part of the src)
|
||||
- CSS `<style>` within HTML page crashed if CSS is too large (? > 32Kb)
|
||||
- SVG image nested int eht HTML failed to show if code too large (? > 32Kb)
|
||||
- cyrillic character p р at end of table cell caused cell height to be incorrectly calculated
|
||||
|
||||
mPDF 5.5
|
||||
===========================
|
||||
|
||||
### 02/03/2012
|
||||
|
||||
Files changed
|
||||
-------------
|
||||
|
||||
- mpdf.php
|
||||
- classes/ttfontsuni.php
|
||||
- classes/svg.php
|
||||
- classes/tocontents.php
|
||||
- config.php
|
||||
- config_fonts.php
|
||||
- utils/font_collections.php
|
||||
- utils/font_coverage.php
|
||||
- utils/font_dump.php
|
||||
|
||||
Files added
|
||||
-----------
|
||||
|
||||
classes/ttfontsuni_analysis.php
|
||||
|
||||
config.php changes
|
||||
------------------
|
||||
|
||||
To avoid just the border/background-color of the (empty) end of a block being moved on to next page (`</div></div>`)
|
||||
|
||||
`$this->margBuffer = 0; // Allow an (empty) end of block to extend beyond the bottom margin by this amount (mm)`
|
||||
|
||||
config_fonts.php changes
|
||||
------------------------
|
||||
|
||||
Added to (arabic) fonts to allow "use non-mapped Arabic Glyphs" e.g. for Pashto
|
||||
'unAGlyphs' => true,
|
||||
|
||||
Arabic text
|
||||
-----------
|
||||
|
||||
Arabic text (RTL) rewritten with improved support for Pashto/Sindhi/Urdu/Kurdish
|
||||
Presentation forms added:
|
||||
U+0649, U+0681, U+0682, U+0685, U+069A-U+069E, U+06A0, U+06A2, U+06A3, U+06A5, U+06AB-U+06AE,
|
||||
U+06B0-U+06B4, U+06B5-U+06B9, U+06BB, U+06BC, U+06BE, U+06BF, U+06C0, U+06CD, U+06CE, U+06D1, U+06D3, U+0678
|
||||
Joining improved:
|
||||
U+0672, U+0675, U+0676, U+0677, U+0679-U+067D, U+067F, U+0680, U+0683, U+0684, U+0687, U+0687, U+0688-U+0692,
|
||||
U+0694, U+0695, U+0697, U+0699, U+068F, U+06A1, U+06A4, U+06A6, U+06A7, U+06A8, U+06AA, U+06BA, U+06C2-U+06CB, U+06CF
|
||||
|
||||
Note - Some characters in Pashto/Sindhi/Urdu/Kurdish do not have Unicode values for the final/initial/medial forms of the characters.
|
||||
However, some fonts include these characters "un-mapped" to Unicode (including XB Zar and XB Riyaz, which are bundled with mPDF).
|
||||
`'unAGlyphs' => true`, added to the config_fonts.php file for appropriate fonts will
|
||||
|
||||
This requires the font file to include a Format 2.0 POST table which references the glyphs as e.g. uni067C.med or uni067C.medi:
|
||||
e.g. XB Riyaz, XB Zar, Arabic Typesetting (MS), Arial (MS)
|
||||
|
||||
NB If you want to know if a font file is suitable, you can open a .ttf file in a text editor and search for "uni067C.med" - if it exists, it may work!
|
||||
Using "unAGlyphs" forces subsetting of fonts, and will not work with SIP/SMP fonts (using characters beyond the Unicode BMP Plane).
|
||||
|
||||
mPDF maps these characters to part of the Private Use Area allocated by Unicode U+F500-F7FF. This could interfere with correct use
|
||||
if the font already utilises these codes (unlikely).
|
||||
|
||||
mPDF now deletes U+200C,U+200D,U+200E,U+200F zero-widthjoiner/non-joiner, LTR and RTL marks so they will not appear
|
||||
even though some fonts contain glyphs for these characters.
|
||||
|
||||
|
||||
Other New features / Improvements
|
||||
---------------------------------
|
||||
Avoid just the border/background-color of the (empty) end of a block being moved on to next page (`</div></div>`)
|
||||
using configurable variable: `$this->margBuffer`;
|
||||
|
||||
|
||||
The TTFontsUni class contained a long function (extractcoreinfo) which is not used routinely in mPDF
|
||||
|
||||
This has been moved to a new file: classes/ttfontsuni_analysis.php.
|
||||
|
||||
The 3 utility scripts have been updated to use the new extended class:
|
||||
|
||||
- utils/font_collections.php
|
||||
- utils/font_coverage.php
|
||||
- utils/font_dump.php
|
||||
|
||||
|
||||
Bug fixes
|
||||
---------
|
||||
- Border & background when closing 2 blocks (e.g. `</div></div>`) incorrectly being moved to next page because incorrectly
|
||||
calculating how much space required
|
||||
- Fixed/Absolute-positioned elements not inheriting letter-spacing style
|
||||
- Rotated cell - error if text-rotate set on a table cell, but no text content in cell
|
||||
- SVG images, text-anchor not working
|
||||
- Nested table - not resetting cell style (font, color etc) after nested table, if text follows immediately
|
||||
- Nested table - font-size 70% set in extenal style sheet; if repeated nested tables, sets 70% of 70% etc etc
|
||||
- SVG setting font-size as percent on successive `<text>` elements gives progressively smaller text
|
||||
- mPDF will check if magic_quotes_runtime set ON even >= PHP 5.3 (will now cause an error message)
|
||||
- not resetting after 2 nested tags of same type e.g. `<b><b>bold</b></b>` still bold
|
||||
- When using charset_in other than utf-8, HTML Footers using tags e.g. `<htmlpageheader>` do not decode correctly
|
||||
- ToC if nested > 3 levels, line spacing reduces and starts to overlap
|
||||
|
||||
Older changes can be seen [on the documentation site](https://mpdf.github.io/about-mpdf/changelog.html).
|
||||
91
vendor/mpdf/mpdf/CREDITS.txt
vendored
Normal file
91
vendor/mpdf/mpdf/CREDITS.txt
vendored
Normal file
|
|
@ -0,0 +1,91 @@
|
|||
|
||||
|
||||
/*******************************************************************************
|
||||
* Software: FPDF *
|
||||
* Version: 1.53 *
|
||||
* Date: 2004-12-31 *
|
||||
* Author: Olivier PLATHEY *
|
||||
* License: Freeware *
|
||||
* *
|
||||
* You may use and modify this software as you wish. *
|
||||
*******************************************************************************/
|
||||
|
||||
/*******************************************************************************
|
||||
* HTML2FPDF is a php script to read a HTML text and generate a PDF file. *
|
||||
* Copyright (C) 2004-2005 Renato Coelho *
|
||||
* *
|
||||
* html2fpdf.php, htmltoolkit.php *
|
||||
*******************************************************************************/
|
||||
|
||||
CREDITS From HTML2FPDF:
|
||||
|
||||
-Olivier Plathey for the fpdf.php class [http://www.fpdf.org]
|
||||
-Damon Kohler for the Flowing Block script [mailto:damonkohler@yahoo.com]
|
||||
-Clément Lavoillotte for HTML-oriented FPDF idea
|
||||
-Yamasoft for the gif.php class [http://www.yamasoft.com/]
|
||||
-Jérôme Fenal for the _parsegif() function
|
||||
-"VIETCOM" for the PDFTable code [http://www.freepgs.com/vietcom/tool/pdftable/] [mailto:vncommando@yahoo.com]
|
||||
-Yukihiro O. for the SetDash() function [mailto:yukihiro_o@infoseek.jp]
|
||||
-Ron Korving for the WordWrap() function
|
||||
-Michel Poulain for the DisplayPreferences() function
|
||||
-Patrick Benny for the MultiCellBlt() function idea [no longer in use]
|
||||
-Seb for the _SetTextRendering() and SetTextOutline() functions [mailto:captainseb@wanadoo.fr]
|
||||
-MorphSoft for the colornames list idea
|
||||
-W3SCHOOLS for HTML-related reference info [http://www.w3schools.com/]
|
||||
|
||||
|
||||
|
||||
/****************************************************************************
|
||||
* Software: FPDF_Protection *
|
||||
* Version: 1.02 *
|
||||
* Date: 2005/05/08 *
|
||||
* Author: Klemen VODOPIVEC *
|
||||
* License: Freeware *
|
||||
* *
|
||||
* You may use and modify this software as you wish as stated in original *
|
||||
* FPDF package. *
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
// FPDI - Version 1.2
|
||||
//
|
||||
// Copyright 2004-2007 Setasign - Jan Slabon
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
****************************************************************************/
|
||||
|
||||
/****************************************************************************
|
||||
* @copyright Khaled Al-Shamaa 2008
|
||||
* @link http://www.ar-php.org
|
||||
* @author Khaled Al-Shamaa <khaled@ar-php.org>
|
||||
* @desc Set of PHP5 / UTF-8 Classes developed to enhance Arabic web
|
||||
* applications by providing set of tools includes stem-based searching,
|
||||
* translitiration, soundex, Hijri calendar, charset detection and
|
||||
* converter, spell numbers, keyboard language, Muslim prayer time,
|
||||
* auto-summarization, and more...
|
||||
* @package Arabic
|
||||
*
|
||||
* @version 1.8 released in Feb 15, 2009
|
||||
*
|
||||
* @license LGPL
|
||||
****************************************************************************/
|
||||
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation;
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
[http://www.opensource.org/licenses/lgpl-license.php]
|
||||
280
vendor/mpdf/mpdf/LICENSE.txt
vendored
Normal file
280
vendor/mpdf/mpdf/LICENSE.txt
vendored
Normal file
|
|
@ -0,0 +1,280 @@
|
|||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Lesser General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
148
vendor/mpdf/mpdf/README.md
vendored
Normal file
148
vendor/mpdf/mpdf/README.md
vendored
Normal file
|
|
@ -0,0 +1,148 @@
|
|||
mPDF is a PHP library which generates PDF files from UTF-8 encoded HTML.
|
||||
|
||||
It is based on [FPDF](http://www.fpdf.org/) and [HTML2FPDF](http://html2fpdf.sourceforge.net/)
|
||||
(see [CREDITS](CREDITS.txt)), with a number of enhancements. mPDF was written by Ian Back and is released
|
||||
under the [GNU GPL v2 licence](LICENSE.txt).
|
||||
|
||||
[](https://packagist.org/packages/mpdf/mpdf)
|
||||
[](https://packagist.org/packages/mpdf/mpdf)
|
||||
[](https://packagist.org/packages/mpdf/mpdf)
|
||||
|
||||
|
||||
> ⚠ If you are viewing this file on mPDF GitHub repository homepage or on Packagist, please note that
|
||||
> the default repository branch is `development` which can differ from the last stable release.
|
||||
|
||||
Requirements
|
||||
============
|
||||
|
||||
PHP versions and extensions
|
||||
---------------------------
|
||||
|
||||
- `PHP >=5.6 <7.3.0` is supported for `mPDF >= 7.0`
|
||||
- `PHP 7.3` is supported since `mPDF v7.1.7`
|
||||
- `PHP 7.4` is supported since `mPDF v8.0.4`
|
||||
- `PHP 8.0` is supported since `mPDF v8.0.10`
|
||||
- `PHP 8.1` is supported as of `mPDF v8.0.13`
|
||||
- `PHP 8.2` is supported as of `mPDF v8.1.3`
|
||||
- `PHP 8.3` is supported as of `mPDF v8.2.1`
|
||||
|
||||
PHP `mbstring` and `gd` extensions have to be loaded.
|
||||
|
||||
Additional extensions may be required for some advanced features such as `zlib` for compression of output and
|
||||
embedded resources such as fonts, `bcmath` for generating barcodes or `xml` for character set conversion
|
||||
and SVG handling.
|
||||
|
||||
Known server caveats
|
||||
--------------------
|
||||
|
||||
mPDF has some problems with fetching external HTTP resources with single threaded servers such as `php -S`. A proper
|
||||
server such as nginx (php-fpm) or Apache is recommended.
|
||||
|
||||
Support us
|
||||
==========
|
||||
|
||||
Consider supporting development of mPDF with a donation of any value. [Donation button][1] can be found on the
|
||||
[main page of the documentation][1].
|
||||
|
||||
Installation
|
||||
============
|
||||
|
||||
Official installation method is via composer and its packagist package [mpdf/mpdf](https://packagist.org/packages/mpdf/mpdf).
|
||||
|
||||
```
|
||||
$ composer require mpdf/mpdf
|
||||
```
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
The simplest usage (since version 7.0) of the library would be as follows:
|
||||
|
||||
```php
|
||||
<?php
|
||||
|
||||
require_once __DIR__ . '/vendor/autoload.php';
|
||||
|
||||
$mpdf = new \Mpdf\Mpdf();
|
||||
$mpdf->WriteHTML('<h1>Hello world!</h1>');
|
||||
$mpdf->Output();
|
||||
|
||||
```
|
||||
|
||||
This will output the PDF inline to the browser as `application/pdf` Content-type.
|
||||
|
||||
Setup & Configuration
|
||||
=====================
|
||||
|
||||
All [configuration directives](https://mpdf.github.io/reference/mpdf-variables/overview.html) can
|
||||
be set by the `$config` parameter of the constructor.
|
||||
|
||||
It is recommended to set one's own temporary directory via `tempDir` configuration variable.
|
||||
The directory must have write permissions (mode `775` is recommended) for users using mPDF
|
||||
(typically `cli`, `webserver`, `fpm`).
|
||||
|
||||
**Warning:** mPDF will clean up old temporary files in the temporary directory. Choose a path dedicated to mPDF only.
|
||||
|
||||
|
||||
```php
|
||||
<?php
|
||||
|
||||
$mpdf = new \Mpdf\Mpdf(['tempDir' => __DIR__ . '/tmp']);
|
||||
|
||||
```
|
||||
|
||||
By default, the temporary directory will be inside vendor directory and will have write permissions from
|
||||
`post_install` composer script.
|
||||
|
||||
For more information about custom temporary directory see the note on
|
||||
[Folder for temporary files](https://mpdf.github.io/installation-setup/folders-for-temporary-files.html)
|
||||
in the section on Installation & Setup in the [manual][1].
|
||||
|
||||
If you have problems, please read the section on
|
||||
[troubleshooting](https://mpdf.github.io/troubleshooting/known-issues.html) in the manual.
|
||||
|
||||
About CSS support and development state
|
||||
=======================================
|
||||
|
||||
mPDF as a whole is a quite dated software. Nowadays, better alternatives are available, albeit not written in PHP.
|
||||
|
||||
Use mPDF if you cannot use non-PHP approach to generate PDF files or if you want to leverage some of the benefits of mPDF
|
||||
over browser approach – color handling, pre-print, barcodes support, headers and footers, page numbering, TOCs, etc.
|
||||
But beware that a HTML/CSS template tailored for mPDF might be necessary.
|
||||
|
||||
If you are looking for state of the art CSS support, mirroring existing HTML pages to PDF, use headless Chrome.
|
||||
|
||||
mPDF will still be updated to enhance some internal capabilities and to support newer versions of PHP,
|
||||
but better and/or newer CSS support will most likely not be implemented.
|
||||
|
||||
Online manual
|
||||
=============
|
||||
|
||||
Online manual is available at https://mpdf.github.io/.
|
||||
|
||||
General troubleshooting
|
||||
=============
|
||||
|
||||
For general questions or troubleshooting please use [Discussions](https://github.com/mpdf/mpdf/discussions).
|
||||
|
||||
You can also use the [mpdf tag](https://stackoverflow.com/questions/tagged/mpdf) at Stack Overflow as the StackOverflow user base is more likely to answer you in a timely manner.
|
||||
|
||||
Contributing
|
||||
============
|
||||
|
||||
Before submitting issues and pull requests please read the [CONTRIBUTING.md](https://github.com/mpdf/mpdf/blob/development/.github/CONTRIBUTING.md) file.
|
||||
|
||||
Unit Testing
|
||||
============
|
||||
|
||||
Unit testing for mPDF is done using [PHPUnit](https://phpunit.de/).
|
||||
|
||||
To get started, run `composer install` from the command line while in the mPDF root directory
|
||||
(you'll need [composer installed first](https://getcomposer.org/download/)).
|
||||
|
||||
To execute tests, run `composer test` from the command line while in the mPDF root directory.
|
||||
|
||||
Any assistance writing unit tests for mPDF is greatly appreciated. If you'd like to help, please
|
||||
note that any PHP file located in the `/tests/` directory will be autoloaded when unit testing.
|
||||
|
||||
[1]: https://mpdf.github.io
|
||||
74
vendor/mpdf/mpdf/composer.json
vendored
Normal file
74
vendor/mpdf/mpdf/composer.json
vendored
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
{
|
||||
"name": "mpdf/mpdf",
|
||||
"type": "library",
|
||||
"description": "PHP library generating PDF files from UTF-8 encoded HTML",
|
||||
"keywords": ["php", "pdf", "utf-8"],
|
||||
"homepage": "https://mpdf.github.io",
|
||||
"license": ["GPL-2.0-only"],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Matěj Humpál",
|
||||
"role": "Developer, maintainer"
|
||||
},
|
||||
{
|
||||
"name": "Ian Back",
|
||||
"role": "Developer (retired)"
|
||||
}
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/mpdf/mpdf/issues",
|
||||
"source": "https://github.com/mpdf/mpdf",
|
||||
"docs": "http://mpdf.github.io"
|
||||
},
|
||||
"require": {
|
||||
"php": "^5.6 || ^7.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
|
||||
"ext-gd": "*",
|
||||
"ext-mbstring": "*",
|
||||
"mpdf/psr-http-message-shim": "^1.0 || ^2.0",
|
||||
"mpdf/psr-log-aware-trait": "^2.0 || ^3.0",
|
||||
"myclabs/deep-copy": "^1.7",
|
||||
"paragonie/random_compat": "^1.4|^2.0|^9.99.99",
|
||||
"psr/http-message": "^1.0 || ^2.0",
|
||||
"psr/log": "^1.0 || ^2.0 || ^3.0",
|
||||
"setasign/fpdi": "^2.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"mockery/mockery": "^1.3.0",
|
||||
"mpdf/qrcode": "^1.1.0",
|
||||
"squizlabs/php_codesniffer": "^3.5.0",
|
||||
"tracy/tracy": "~2.5",
|
||||
"yoast/phpunit-polyfills": "^1.0"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-bcmath": "Needed for generation of some types of barcodes",
|
||||
"ext-zlib": "Needed for compression of embedded resources, such as fonts",
|
||||
"ext-xml": "Needed mainly for SVG manipulation"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Mpdf\\": "src/"
|
||||
},
|
||||
"files": [
|
||||
"src/functions.php"
|
||||
]
|
||||
},
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Mpdf\\": "tests/Mpdf"
|
||||
},
|
||||
"files": [
|
||||
"src/functions-dev.php"
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"post-install-cmd": [
|
||||
"php -r \"chmod('./tmp', 0777);\""
|
||||
],
|
||||
"cs": "@php vendor/bin/phpcs -v --report-width=160 --standard=ruleset.xml --severity=1 --warning-severity=0 --extensions=php src utils tests",
|
||||
"test": "@php vendor/bin/phpunit",
|
||||
"coverage": "@php vendor/bin/phpunit --coverage-text"
|
||||
},
|
||||
"config": {
|
||||
"sort-packages": true
|
||||
}
|
||||
}
|
||||
99
vendor/mpdf/mpdf/data/CJKdata.php
vendored
Normal file
99
vendor/mpdf/mpdf/data/CJKdata.php
vendored
Normal file
|
|
@ -0,0 +1,99 @@
|
|||
<?php
|
||||
// mPDF 2.5
|
||||
|
||||
// BIG 5
|
||||
$cw = array(
|
||||
32 => 250, 33 => 250, 34 => 408, 35 => 668, 36 => 490, 37 => 875, 38 => 698, 39 => 250, 40 => 240, 41 => 240,
|
||||
42 => 417, 43 => 667, 44 => 250, 45 => 313, 46 => 250, 47 => 520, 48 => 500, 49 => 500, 50 => 500, 51 => 500,
|
||||
52 => 500, 53 => 500, 54 => 500, 55 => 500, 56 => 500, 57 => 500, 58 => 250, 59 => 250, 60 => 667, 61 => 667,
|
||||
62 => 667, 63 => 396, 64 => 921, 65 => 677, 66 => 615, 67 => 719, 68 => 760, 69 => 625, 70 => 552, 71 => 771,
|
||||
72 => 802, 73 => 354, 74 => 354, 75 => 781, 76 => 604, 77 => 927, 78 => 750, 79 => 823, 80 => 563, 81 => 823,
|
||||
82 => 729, 83 => 542, 84 => 698, 85 => 771, 86 => 729, 87 => 948, 88 => 771, 89 => 677, 90 => 635, 91 => 344,
|
||||
92 => 520, 93 => 344, 94 => 469, 95 => 500, 96 => 250, 97 => 469, 98 => 521, 99 => 427, 100 => 521, 101 => 438,
|
||||
102 => 271, 103 => 469, 104 => 531, 105 => 250, 106 => 250, 107 => 458, 108 => 240, 109 => 802, 110 => 531, 111 => 500,
|
||||
112 => 521, 113 => 521, 114 => 365, 115 => 333, 116 => 292, 117 => 521, 118 => 458, 119 => 677, 120 => 479, 121 => 458,
|
||||
122 => 427, 123 => 480, 124 => 496, 125 => 480, 126 => 667,
|
||||
17601 => 500,
|
||||
);
|
||||
$this->Big5_widths=$cw;
|
||||
|
||||
|
||||
// GB
|
||||
$cw = array(
|
||||
32 => 207, 33 => 270, 34 => 342, 35 => 467, 36 => 462, 37 => 797, 38 => 710, 39 => 239, 40 => 374, 41 => 374,
|
||||
42 => 423, 43 => 605, 44 => 238, 45 => 375, 46 => 238, 47 => 334, 48 => 462, 49 => 462, 50 => 462, 51 => 462,
|
||||
52 => 462, 53 => 462, 54 => 462, 55 => 462, 56 => 462, 57 => 462, 58 => 238, 59 => 238, 60 => 605, 61 => 605,
|
||||
62 => 605, 63 => 344, 64 => 748, 65 => 684, 66 => 560, 67 => 695, 68 => 739, 69 => 563, 70 => 511, 71 => 729,
|
||||
72 => 793, 73 => 318, 74 => 312, 75 => 666, 76 => 526, 77 => 896, 78 => 758, 79 => 772, 80 => 544, 81 => 772,
|
||||
82 => 628, 83 => 465, 84 => 607, 85 => 753, 86 => 711, 87 => 972, 88 => 647, 89 => 620, 90 => 607, 91 => 374,
|
||||
92 => 333, 93 => 374, 94 => 606, 95 => 500, 96 => 239, 97 => 417, 98 => 503, 99 => 427, 100 => 529, 101 => 415,
|
||||
102 => 264, 103 => 444, 104 => 518, 105 => 241, 106 => 230, 107 => 495, 108 => 228, 109 => 793, 110 => 527, 111 => 524,
|
||||
112 => 524, 113 => 504, 114 => 338, 115 => 336, 116 => 277, 117 => 517, 118 => 450, 119 => 652, 120 => 466, 121 => 452,
|
||||
122 => 407, 123 => 370, 124 => 258, 125 => 370, 126 => 605,
|
||||
);
|
||||
$this->GB_widths=$cw;
|
||||
|
||||
// Japanese
|
||||
$cw = array(
|
||||
32 => 278, 33 => 299, 34 => 353, 35 => 614, 36 => 614, 37 => 721, 38 => 735, 39 => 216, 40 => 323, 41 => 323,
|
||||
42 => 449, 43 => 529, 44 => 219, 45 => 306, 46 => 219, 47 => 453, 48 => 614, 49 => 614, 50 => 614, 51 => 614,
|
||||
52 => 614, 53 => 614, 54 => 614, 55 => 614, 56 => 614, 57 => 614, 58 => 219, 59 => 219, 60 => 529, 61 => 529,
|
||||
62 => 529, 63 => 486, 64 => 744, 65 => 646, 66 => 604, 67 => 617, 68 => 681, 69 => 567, 70 => 537, 71 => 647,
|
||||
72 => 738, 73 => 320, 74 => 433, 75 => 637, 76 => 566, 77 => 904, 78 => 710, 79 => 716, 80 => 605, 81 => 716,
|
||||
82 => 623, 83 => 517, 84 => 601, 85 => 690, 86 => 668, 87 => 990, 88 => 681, 89 => 634, 90 => 578, 91 => 316,
|
||||
92 => 614, 93 => 316, 94 => 529, 95 => 500, 96 => 387, 97 => 509, 98 => 566, 99 => 478, 100 => 565, 101 => 503,
|
||||
102 => 337, 103 => 549, 104 => 580, 105 => 275, 106 => 266, 107 => 544, 108 => 276, 109 => 854, 110 => 579, 111 => 550,
|
||||
112 => 578, 113 => 566, 114 => 410, 115 => 444, 116 => 340, 117 => 575, 118 => 512, 119 => 760, 120 => 503, 121 => 529,
|
||||
122 => 453, 123 => 326, 124 => 380, 125 => 326, 126 => 387, 127 => 216, 128 => 453, 129 => 216, 130 => 380, 131 => 529,
|
||||
132 => 299, 133 => 614, 134 => 614, 135 => 265, 136 => 614, 137 => 475, 138 => 614, 139 => 353, 140 => 451, 141 => 291,
|
||||
142 => 291, 143 => 588, 144 => 589, 145 => 500, 146 => 476, 147 => 476, 148 => 219, 149 => 494, 150 => 452, 151 => 216,
|
||||
152 => 353, 153 => 353, 154 => 451, 156 => 1075, 157 => 486, 158 => 387, 159 => 387, 160 => 387, 161 => 387,
|
||||
162 => 387, 163 => 387, 164 => 387, 165 => 387, 166 => 387, 167 => 387, 168 => 387, 170 => 880, 171 => 448,
|
||||
172 => 566, 173 => 716, 174 => 903, 175 => 460, 176 => 805, 177 => 275, 178 => 276, 179 => 550, 180 => 886, 181 => 582,
|
||||
182 => 529, 183 => 738, 184 => 529, 185 => 738, 186 => 357, 187 => 529, 188 => 406, 189 => 406, 190 => 575, 191 => 406,
|
||||
192 => 934, 193 => 934, 194 => 934, 195 => 646, 196 => 646, 197 => 646, 198 => 646, 199 => 646, 200 => 646, 201 => 617,
|
||||
202 => 567, 203 => 567, 204 => 567, 205 => 567, 206 => 320, 207 => 320, 208 => 320, 209 => 320, 210 => 681, 211 => 710,
|
||||
212 => 716, 213 => 716, 214 => 716, 215 => 716, 216 => 716, 217 => 529, 218 => 690, 219 => 690, 220 => 690, 221 => 690,
|
||||
222 => 634, 223 => 605, 224 => 509, 225 => 509, 226 => 509, 227 => 509, 228 => 509, 229 => 509, 230 => 478, 231 => 503,
|
||||
232 => 503, 233 => 503, 234 => 503, 235 => 275, 236 => 275, 237 => 275, 238 => 275, 239 => 550, 240 => 579, 241 => 550,
|
||||
242 => 550, 243 => 550, 244 => 550, 245 => 550, 246 => 529, 247 => 575, 248 => 575, 249 => 575, 250 => 575, 251 => 529,
|
||||
252 => 578, 253 => 529, 254 => 517, 255 => 634, 256 => 578, 257 => 445, 258 => 444, 259 => 842, 260 => 453, 261 => 614,
|
||||
);
|
||||
|
||||
|
||||
$_cr = array(
|
||||
array(231, 632, 500), // half-width
|
||||
array(8718, 8718, 500),
|
||||
array(9738, 9757, 250), // quarter-width
|
||||
array(9758, 9778, 333), // third-width
|
||||
array(12063, 12087, 500),
|
||||
);
|
||||
foreach($_cr as $_r) {
|
||||
for($i = $_r[0]; $i <= $_r[1]; $i++) {
|
||||
$cw[$i+31] = $_r[2];
|
||||
}
|
||||
}
|
||||
$this->SJIS_widths=$cw;
|
||||
|
||||
// Korean
|
||||
$cw = array(
|
||||
32 => 333, 33 => 416, 34 => 416, 35 => 833, 36 => 625, 37 => 916, 38 => 833, 39 => 250, 40 => 500, 41 => 500,
|
||||
42 => 500, 43 => 833, 44 => 291, 45 => 450, 46 => 291, 47 => 375, 48 => 625, 49 => 625, 50 => 625, 51 => 625,
|
||||
52 => 625, 53 => 625, 54 => 625, 55 => 625, 56 => 625, 57 => 625, 58 => 333, 59 => 333, 60 => 833, 61 => 833,
|
||||
62 => 916, 63 => 500, 64 => 1000, 65 => 791, 66 => 708, 67 => 708, 68 => 750, 69 => 708, 70 => 666, 71 => 750,
|
||||
72 => 791, 73 => 375, 74 => 500, 75 => 791, 76 => 666, 77 => 916, 78 => 791, 79 => 750, 80 => 666, 81 => 750,
|
||||
82 => 708, 83 => 666, 84 => 791, 85 => 791, 86 => 750, 87 => 1000, 88 => 708, 89 => 708, 90 => 666, 91 => 500,
|
||||
92 => 375, 93 => 500, 94 => 500, 95 => 500, 96 => 333, 97 => 541, 98 => 583, 99 => 541, 100 => 583, 101 => 583,
|
||||
102 => 375, 103 => 583, 104 => 583, 105 => 291, 106 => 333, 107 => 583, 108 => 291, 109 => 875, 110 => 583, 111 => 583,
|
||||
112 => 583, 113 => 583, 114 => 458, 115 => 541, 116 => 375, 117 => 583, 118 => 583, 119 => 833, 120 => 625, 121 => 625,
|
||||
122 => 500, 123 => 583, 124 => 583, 125 => 583, 126 => 750,
|
||||
);
|
||||
$_cr = array(
|
||||
array(8094, 8190, 500)
|
||||
);
|
||||
foreach($_cr as $_r) {
|
||||
for($i = $_r[0]; $i <= $_r[1]; $i++) {
|
||||
$cw[$i+31] = $_r[2];
|
||||
}
|
||||
}
|
||||
$this->UHC_widths=$cw;
|
||||
104
vendor/mpdf/mpdf/data/collations/Afrikaans_South_Africa.php
vendored
Normal file
104
vendor/mpdf/mpdf/data/collations/Afrikaans_South_Africa.php
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
229 => 97,
|
||||
197 => 97,
|
||||
230 => 97,
|
||||
198 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
240 => 100,
|
||||
208 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
248 => 111,
|
||||
216 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
254 => 116,
|
||||
222 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
90 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
];
|
||||
110
vendor/mpdf/mpdf/data/collations/Albanian_Albania.php
vendored
Normal file
110
vendor/mpdf/mpdf/data/collations/Albanian_Albania.php
vendored
Normal file
|
|
@ -0,0 +1,110 @@
|
|||
<?php
|
||||
return [
|
||||
728 => 711,
|
||||
65 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
259 => 97,
|
||||
258 => 97,
|
||||
261 => 97,
|
||||
260 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
263 => 99,
|
||||
262 => 99,
|
||||
269 => 99,
|
||||
268 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
271 => 100,
|
||||
270 => 100,
|
||||
273 => 100,
|
||||
272 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
283 => 101,
|
||||
282 => 101,
|
||||
281 => 101,
|
||||
280 => 101,
|
||||
70 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
314 => 108,
|
||||
313 => 108,
|
||||
318 => 108,
|
||||
317 => 108,
|
||||
322 => 108,
|
||||
321 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
324 => 110,
|
||||
323 => 110,
|
||||
328 => 110,
|
||||
327 => 110,
|
||||
79 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
337 => 111,
|
||||
336 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
341 => 114,
|
||||
340 => 114,
|
||||
345 => 114,
|
||||
344 => 114,
|
||||
83 => 115,
|
||||
347 => 115,
|
||||
346 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
351 => 115,
|
||||
350 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
357 => 116,
|
||||
356 => 116,
|
||||
355 => 116,
|
||||
354 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
367 => 117,
|
||||
366 => 117,
|
||||
369 => 117,
|
||||
368 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
221 => 253,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
378 => 122,
|
||||
377 => 122,
|
||||
380 => 122,
|
||||
379 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
];
|
||||
104
vendor/mpdf/mpdf/data/collations/Alsatian_France.php
vendored
Normal file
104
vendor/mpdf/mpdf/data/collations/Alsatian_France.php
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
229 => 97,
|
||||
197 => 97,
|
||||
230 => 97,
|
||||
198 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
240 => 100,
|
||||
208 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
248 => 111,
|
||||
216 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
254 => 116,
|
||||
222 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
90 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
];
|
||||
67
vendor/mpdf/mpdf/data/collations/Arabic_Algeria.php
vendored
Normal file
67
vendor/mpdf/mpdf/data/collations/Arabic_Algeria.php
vendored
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
<?php
|
||||
return [
|
||||
173 => 8205,
|
||||
1600 => 8205,
|
||||
1611 => 8205,
|
||||
1612 => 8205,
|
||||
1613 => 8205,
|
||||
1614 => 8205,
|
||||
1615 => 8205,
|
||||
1616 => 8205,
|
||||
1618 => 8205,
|
||||
1617 => 8205,
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
224 => 97,
|
||||
226 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
232 => 101,
|
||||
234 => 101,
|
||||
235 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
238 => 105,
|
||||
239 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
244 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
249 => 117,
|
||||
251 => 117,
|
||||
252 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1573 => 1575,
|
||||
1571 => 1575,
|
||||
1570 => 1575,
|
||||
1606 => 1722,
|
||||
1729 => 1607,
|
||||
1726 => 1607,
|
||||
1572 => 1608,
|
||||
1746 => 1610,
|
||||
1574 => 1610,
|
||||
];
|
||||
67
vendor/mpdf/mpdf/data/collations/Arabic_Bahrain.php
vendored
Normal file
67
vendor/mpdf/mpdf/data/collations/Arabic_Bahrain.php
vendored
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
<?php
|
||||
return [
|
||||
173 => 8205,
|
||||
1600 => 8205,
|
||||
1611 => 8205,
|
||||
1612 => 8205,
|
||||
1613 => 8205,
|
||||
1614 => 8205,
|
||||
1615 => 8205,
|
||||
1616 => 8205,
|
||||
1618 => 8205,
|
||||
1617 => 8205,
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
224 => 97,
|
||||
226 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
232 => 101,
|
||||
234 => 101,
|
||||
235 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
238 => 105,
|
||||
239 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
244 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
249 => 117,
|
||||
251 => 117,
|
||||
252 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1573 => 1575,
|
||||
1571 => 1575,
|
||||
1570 => 1575,
|
||||
1606 => 1722,
|
||||
1729 => 1607,
|
||||
1726 => 1607,
|
||||
1572 => 1608,
|
||||
1746 => 1610,
|
||||
1574 => 1610,
|
||||
];
|
||||
67
vendor/mpdf/mpdf/data/collations/Arabic_Egypt.php
vendored
Normal file
67
vendor/mpdf/mpdf/data/collations/Arabic_Egypt.php
vendored
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
<?php
|
||||
return [
|
||||
173 => 8205,
|
||||
1600 => 8205,
|
||||
1611 => 8205,
|
||||
1612 => 8205,
|
||||
1613 => 8205,
|
||||
1614 => 8205,
|
||||
1615 => 8205,
|
||||
1616 => 8205,
|
||||
1618 => 8205,
|
||||
1617 => 8205,
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
224 => 97,
|
||||
226 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
232 => 101,
|
||||
234 => 101,
|
||||
235 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
238 => 105,
|
||||
239 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
244 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
249 => 117,
|
||||
251 => 117,
|
||||
252 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1573 => 1575,
|
||||
1571 => 1575,
|
||||
1570 => 1575,
|
||||
1606 => 1722,
|
||||
1729 => 1607,
|
||||
1726 => 1607,
|
||||
1572 => 1608,
|
||||
1746 => 1610,
|
||||
1574 => 1610,
|
||||
];
|
||||
67
vendor/mpdf/mpdf/data/collations/Arabic_Iraq.php
vendored
Normal file
67
vendor/mpdf/mpdf/data/collations/Arabic_Iraq.php
vendored
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
<?php
|
||||
return [
|
||||
173 => 8205,
|
||||
1600 => 8205,
|
||||
1611 => 8205,
|
||||
1612 => 8205,
|
||||
1613 => 8205,
|
||||
1614 => 8205,
|
||||
1615 => 8205,
|
||||
1616 => 8205,
|
||||
1618 => 8205,
|
||||
1617 => 8205,
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
224 => 97,
|
||||
226 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
232 => 101,
|
||||
234 => 101,
|
||||
235 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
238 => 105,
|
||||
239 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
244 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
249 => 117,
|
||||
251 => 117,
|
||||
252 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1573 => 1575,
|
||||
1571 => 1575,
|
||||
1570 => 1575,
|
||||
1606 => 1722,
|
||||
1729 => 1607,
|
||||
1726 => 1607,
|
||||
1572 => 1608,
|
||||
1746 => 1610,
|
||||
1574 => 1610,
|
||||
];
|
||||
67
vendor/mpdf/mpdf/data/collations/Arabic_Jordan.php
vendored
Normal file
67
vendor/mpdf/mpdf/data/collations/Arabic_Jordan.php
vendored
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
<?php
|
||||
return [
|
||||
173 => 8205,
|
||||
1600 => 8205,
|
||||
1611 => 8205,
|
||||
1612 => 8205,
|
||||
1613 => 8205,
|
||||
1614 => 8205,
|
||||
1615 => 8205,
|
||||
1616 => 8205,
|
||||
1618 => 8205,
|
||||
1617 => 8205,
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
224 => 97,
|
||||
226 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
232 => 101,
|
||||
234 => 101,
|
||||
235 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
238 => 105,
|
||||
239 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
244 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
249 => 117,
|
||||
251 => 117,
|
||||
252 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1573 => 1575,
|
||||
1571 => 1575,
|
||||
1570 => 1575,
|
||||
1606 => 1722,
|
||||
1729 => 1607,
|
||||
1726 => 1607,
|
||||
1572 => 1608,
|
||||
1746 => 1610,
|
||||
1574 => 1610,
|
||||
];
|
||||
67
vendor/mpdf/mpdf/data/collations/Arabic_Kuwait.php
vendored
Normal file
67
vendor/mpdf/mpdf/data/collations/Arabic_Kuwait.php
vendored
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
<?php
|
||||
return [
|
||||
173 => 8205,
|
||||
1600 => 8205,
|
||||
1611 => 8205,
|
||||
1612 => 8205,
|
||||
1613 => 8205,
|
||||
1614 => 8205,
|
||||
1615 => 8205,
|
||||
1616 => 8205,
|
||||
1618 => 8205,
|
||||
1617 => 8205,
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
224 => 97,
|
||||
226 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
232 => 101,
|
||||
234 => 101,
|
||||
235 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
238 => 105,
|
||||
239 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
244 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
249 => 117,
|
||||
251 => 117,
|
||||
252 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1573 => 1575,
|
||||
1571 => 1575,
|
||||
1570 => 1575,
|
||||
1606 => 1722,
|
||||
1729 => 1607,
|
||||
1726 => 1607,
|
||||
1572 => 1608,
|
||||
1746 => 1610,
|
||||
1574 => 1610,
|
||||
];
|
||||
67
vendor/mpdf/mpdf/data/collations/Arabic_Lebanon.php
vendored
Normal file
67
vendor/mpdf/mpdf/data/collations/Arabic_Lebanon.php
vendored
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
<?php
|
||||
return [
|
||||
173 => 8205,
|
||||
1600 => 8205,
|
||||
1611 => 8205,
|
||||
1612 => 8205,
|
||||
1613 => 8205,
|
||||
1614 => 8205,
|
||||
1615 => 8205,
|
||||
1616 => 8205,
|
||||
1618 => 8205,
|
||||
1617 => 8205,
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
224 => 97,
|
||||
226 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
232 => 101,
|
||||
234 => 101,
|
||||
235 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
238 => 105,
|
||||
239 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
244 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
249 => 117,
|
||||
251 => 117,
|
||||
252 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1573 => 1575,
|
||||
1571 => 1575,
|
||||
1570 => 1575,
|
||||
1606 => 1722,
|
||||
1729 => 1607,
|
||||
1726 => 1607,
|
||||
1572 => 1608,
|
||||
1746 => 1610,
|
||||
1574 => 1610,
|
||||
];
|
||||
67
vendor/mpdf/mpdf/data/collations/Arabic_Libya.php
vendored
Normal file
67
vendor/mpdf/mpdf/data/collations/Arabic_Libya.php
vendored
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
<?php
|
||||
return [
|
||||
173 => 8205,
|
||||
1600 => 8205,
|
||||
1611 => 8205,
|
||||
1612 => 8205,
|
||||
1613 => 8205,
|
||||
1614 => 8205,
|
||||
1615 => 8205,
|
||||
1616 => 8205,
|
||||
1618 => 8205,
|
||||
1617 => 8205,
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
224 => 97,
|
||||
226 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
232 => 101,
|
||||
234 => 101,
|
||||
235 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
238 => 105,
|
||||
239 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
244 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
249 => 117,
|
||||
251 => 117,
|
||||
252 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1573 => 1575,
|
||||
1571 => 1575,
|
||||
1570 => 1575,
|
||||
1606 => 1722,
|
||||
1729 => 1607,
|
||||
1726 => 1607,
|
||||
1572 => 1608,
|
||||
1746 => 1610,
|
||||
1574 => 1610,
|
||||
];
|
||||
67
vendor/mpdf/mpdf/data/collations/Arabic_Morocco.php
vendored
Normal file
67
vendor/mpdf/mpdf/data/collations/Arabic_Morocco.php
vendored
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
<?php
|
||||
return [
|
||||
173 => 8205,
|
||||
1600 => 8205,
|
||||
1611 => 8205,
|
||||
1612 => 8205,
|
||||
1613 => 8205,
|
||||
1614 => 8205,
|
||||
1615 => 8205,
|
||||
1616 => 8205,
|
||||
1618 => 8205,
|
||||
1617 => 8205,
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
224 => 97,
|
||||
226 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
232 => 101,
|
||||
234 => 101,
|
||||
235 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
238 => 105,
|
||||
239 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
244 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
249 => 117,
|
||||
251 => 117,
|
||||
252 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1573 => 1575,
|
||||
1571 => 1575,
|
||||
1570 => 1575,
|
||||
1606 => 1722,
|
||||
1729 => 1607,
|
||||
1726 => 1607,
|
||||
1572 => 1608,
|
||||
1746 => 1610,
|
||||
1574 => 1610,
|
||||
];
|
||||
67
vendor/mpdf/mpdf/data/collations/Arabic_Oman.php
vendored
Normal file
67
vendor/mpdf/mpdf/data/collations/Arabic_Oman.php
vendored
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
<?php
|
||||
return [
|
||||
173 => 8205,
|
||||
1600 => 8205,
|
||||
1611 => 8205,
|
||||
1612 => 8205,
|
||||
1613 => 8205,
|
||||
1614 => 8205,
|
||||
1615 => 8205,
|
||||
1616 => 8205,
|
||||
1618 => 8205,
|
||||
1617 => 8205,
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
224 => 97,
|
||||
226 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
232 => 101,
|
||||
234 => 101,
|
||||
235 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
238 => 105,
|
||||
239 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
244 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
249 => 117,
|
||||
251 => 117,
|
||||
252 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1573 => 1575,
|
||||
1571 => 1575,
|
||||
1570 => 1575,
|
||||
1606 => 1722,
|
||||
1729 => 1607,
|
||||
1726 => 1607,
|
||||
1572 => 1608,
|
||||
1746 => 1610,
|
||||
1574 => 1610,
|
||||
];
|
||||
67
vendor/mpdf/mpdf/data/collations/Arabic_Pseudo_RTL.php
vendored
Normal file
67
vendor/mpdf/mpdf/data/collations/Arabic_Pseudo_RTL.php
vendored
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
<?php
|
||||
return [
|
||||
173 => 8205,
|
||||
1600 => 8205,
|
||||
1611 => 8205,
|
||||
1612 => 8205,
|
||||
1613 => 8205,
|
||||
1614 => 8205,
|
||||
1615 => 8205,
|
||||
1616 => 8205,
|
||||
1618 => 8205,
|
||||
1617 => 8205,
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
224 => 97,
|
||||
226 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
232 => 101,
|
||||
234 => 101,
|
||||
235 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
238 => 105,
|
||||
239 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
244 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
249 => 117,
|
||||
251 => 117,
|
||||
252 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1573 => 1575,
|
||||
1571 => 1575,
|
||||
1570 => 1575,
|
||||
1606 => 1722,
|
||||
1729 => 1607,
|
||||
1726 => 1607,
|
||||
1572 => 1608,
|
||||
1746 => 1610,
|
||||
1574 => 1610,
|
||||
];
|
||||
67
vendor/mpdf/mpdf/data/collations/Arabic_Qatar.php
vendored
Normal file
67
vendor/mpdf/mpdf/data/collations/Arabic_Qatar.php
vendored
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
<?php
|
||||
return [
|
||||
173 => 8205,
|
||||
1600 => 8205,
|
||||
1611 => 8205,
|
||||
1612 => 8205,
|
||||
1613 => 8205,
|
||||
1614 => 8205,
|
||||
1615 => 8205,
|
||||
1616 => 8205,
|
||||
1618 => 8205,
|
||||
1617 => 8205,
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
224 => 97,
|
||||
226 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
232 => 101,
|
||||
234 => 101,
|
||||
235 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
238 => 105,
|
||||
239 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
244 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
249 => 117,
|
||||
251 => 117,
|
||||
252 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1573 => 1575,
|
||||
1571 => 1575,
|
||||
1570 => 1575,
|
||||
1606 => 1722,
|
||||
1729 => 1607,
|
||||
1726 => 1607,
|
||||
1572 => 1608,
|
||||
1746 => 1610,
|
||||
1574 => 1610,
|
||||
];
|
||||
67
vendor/mpdf/mpdf/data/collations/Arabic_Saudi_Arabia.php
vendored
Normal file
67
vendor/mpdf/mpdf/data/collations/Arabic_Saudi_Arabia.php
vendored
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
<?php
|
||||
return [
|
||||
173 => 8205,
|
||||
1600 => 8205,
|
||||
1611 => 8205,
|
||||
1612 => 8205,
|
||||
1613 => 8205,
|
||||
1614 => 8205,
|
||||
1615 => 8205,
|
||||
1616 => 8205,
|
||||
1618 => 8205,
|
||||
1617 => 8205,
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
224 => 97,
|
||||
226 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
232 => 101,
|
||||
234 => 101,
|
||||
235 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
238 => 105,
|
||||
239 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
244 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
249 => 117,
|
||||
251 => 117,
|
||||
252 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1573 => 1575,
|
||||
1571 => 1575,
|
||||
1570 => 1575,
|
||||
1606 => 1722,
|
||||
1729 => 1607,
|
||||
1726 => 1607,
|
||||
1572 => 1608,
|
||||
1746 => 1610,
|
||||
1574 => 1610,
|
||||
];
|
||||
67
vendor/mpdf/mpdf/data/collations/Arabic_Syria.php
vendored
Normal file
67
vendor/mpdf/mpdf/data/collations/Arabic_Syria.php
vendored
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
<?php
|
||||
return [
|
||||
173 => 8205,
|
||||
1600 => 8205,
|
||||
1611 => 8205,
|
||||
1612 => 8205,
|
||||
1613 => 8205,
|
||||
1614 => 8205,
|
||||
1615 => 8205,
|
||||
1616 => 8205,
|
||||
1618 => 8205,
|
||||
1617 => 8205,
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
224 => 97,
|
||||
226 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
232 => 101,
|
||||
234 => 101,
|
||||
235 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
238 => 105,
|
||||
239 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
244 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
249 => 117,
|
||||
251 => 117,
|
||||
252 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1573 => 1575,
|
||||
1571 => 1575,
|
||||
1570 => 1575,
|
||||
1606 => 1722,
|
||||
1729 => 1607,
|
||||
1726 => 1607,
|
||||
1572 => 1608,
|
||||
1746 => 1610,
|
||||
1574 => 1610,
|
||||
];
|
||||
67
vendor/mpdf/mpdf/data/collations/Arabic_Tunisia.php
vendored
Normal file
67
vendor/mpdf/mpdf/data/collations/Arabic_Tunisia.php
vendored
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
<?php
|
||||
return [
|
||||
173 => 8205,
|
||||
1600 => 8205,
|
||||
1611 => 8205,
|
||||
1612 => 8205,
|
||||
1613 => 8205,
|
||||
1614 => 8205,
|
||||
1615 => 8205,
|
||||
1616 => 8205,
|
||||
1618 => 8205,
|
||||
1617 => 8205,
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
224 => 97,
|
||||
226 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
232 => 101,
|
||||
234 => 101,
|
||||
235 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
238 => 105,
|
||||
239 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
244 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
249 => 117,
|
||||
251 => 117,
|
||||
252 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1573 => 1575,
|
||||
1571 => 1575,
|
||||
1570 => 1575,
|
||||
1606 => 1722,
|
||||
1729 => 1607,
|
||||
1726 => 1607,
|
||||
1572 => 1608,
|
||||
1746 => 1610,
|
||||
1574 => 1610,
|
||||
];
|
||||
67
vendor/mpdf/mpdf/data/collations/Arabic_Yemen.php
vendored
Normal file
67
vendor/mpdf/mpdf/data/collations/Arabic_Yemen.php
vendored
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
<?php
|
||||
return [
|
||||
173 => 8205,
|
||||
1600 => 8205,
|
||||
1611 => 8205,
|
||||
1612 => 8205,
|
||||
1613 => 8205,
|
||||
1614 => 8205,
|
||||
1615 => 8205,
|
||||
1616 => 8205,
|
||||
1618 => 8205,
|
||||
1617 => 8205,
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
224 => 97,
|
||||
226 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
232 => 101,
|
||||
234 => 101,
|
||||
235 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
238 => 105,
|
||||
239 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
244 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
249 => 117,
|
||||
251 => 117,
|
||||
252 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1573 => 1575,
|
||||
1571 => 1575,
|
||||
1570 => 1575,
|
||||
1606 => 1722,
|
||||
1729 => 1607,
|
||||
1726 => 1607,
|
||||
1572 => 1608,
|
||||
1746 => 1610,
|
||||
1574 => 1610,
|
||||
];
|
||||
79
vendor/mpdf/mpdf/data/collations/Azeri_(Cyrillic)_Azerbaijan.php
vendored
Normal file
79
vendor/mpdf/mpdf/data/collations/Azeri_(Cyrillic)_Azerbaijan.php
vendored
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
<?php
|
||||
return [
|
||||
65 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
70 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
88 => 120,
|
||||
73 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
81 => 113,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
80 => 112,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1040 => 1072,
|
||||
1041 => 1073,
|
||||
1042 => 1074,
|
||||
1043 => 1075,
|
||||
1107 => 1075,
|
||||
1027 => 1075,
|
||||
1168 => 1169,
|
||||
1044 => 1076,
|
||||
1026 => 1106,
|
||||
1045 => 1077,
|
||||
1105 => 1077,
|
||||
1025 => 1077,
|
||||
1028 => 1108,
|
||||
1046 => 1078,
|
||||
1047 => 1079,
|
||||
1029 => 1109,
|
||||
1048 => 1080,
|
||||
1031 => 1111,
|
||||
1049 => 1081,
|
||||
1032 => 1112,
|
||||
1050 => 1082,
|
||||
1116 => 1082,
|
||||
1036 => 1082,
|
||||
1067 => 1099,
|
||||
1051 => 1083,
|
||||
1033 => 1113,
|
||||
1052 => 1084,
|
||||
1053 => 1085,
|
||||
1034 => 1114,
|
||||
1054 => 1086,
|
||||
1055 => 1087,
|
||||
1056 => 1088,
|
||||
1057 => 1089,
|
||||
1058 => 1090,
|
||||
1035 => 1115,
|
||||
1059 => 1091,
|
||||
1118 => 1091,
|
||||
1038 => 1091,
|
||||
1060 => 1092,
|
||||
1061 => 1093,
|
||||
1062 => 1094,
|
||||
1063 => 1095,
|
||||
1039 => 1119,
|
||||
1064 => 1096,
|
||||
1065 => 1097,
|
||||
1066 => 1098,
|
||||
1068 => 1100,
|
||||
1069 => 1101,
|
||||
1070 => 1102,
|
||||
1071 => 1103,
|
||||
];
|
||||
97
vendor/mpdf/mpdf/data/collations/Azeri_(Latin)_Azerbaijan.php
vendored
Normal file
97
vendor/mpdf/mpdf/data/collations/Azeri_(Latin)_Azerbaijan.php
vendored
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
229 => 97,
|
||||
197 => 97,
|
||||
230 => 97,
|
||||
198 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
199 => 231,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
286 => 287,
|
||||
72 => 104,
|
||||
88 => 120,
|
||||
73 => 105,
|
||||
305 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
304 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
81 => 113,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
248 => 111,
|
||||
216 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
214 => 246,
|
||||
80 => 112,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
350 => 351,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
220 => 252,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
89 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
90 => 122,
|
||||
];
|
||||
79
vendor/mpdf/mpdf/data/collations/Bashkir_Russia.php
vendored
Normal file
79
vendor/mpdf/mpdf/data/collations/Bashkir_Russia.php
vendored
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
<?php
|
||||
return [
|
||||
65 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
70 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1040 => 1072,
|
||||
1041 => 1073,
|
||||
1042 => 1074,
|
||||
1043 => 1075,
|
||||
1107 => 1075,
|
||||
1027 => 1075,
|
||||
1168 => 1169,
|
||||
1044 => 1076,
|
||||
1026 => 1106,
|
||||
1045 => 1077,
|
||||
1105 => 1077,
|
||||
1025 => 1077,
|
||||
1028 => 1108,
|
||||
1046 => 1078,
|
||||
1047 => 1079,
|
||||
1029 => 1109,
|
||||
1048 => 1080,
|
||||
1031 => 1111,
|
||||
1049 => 1081,
|
||||
1032 => 1112,
|
||||
1050 => 1082,
|
||||
1116 => 1082,
|
||||
1036 => 1082,
|
||||
1051 => 1083,
|
||||
1033 => 1113,
|
||||
1052 => 1084,
|
||||
1053 => 1085,
|
||||
1034 => 1114,
|
||||
1054 => 1086,
|
||||
1055 => 1087,
|
||||
1056 => 1088,
|
||||
1057 => 1089,
|
||||
1058 => 1090,
|
||||
1035 => 1115,
|
||||
1059 => 1091,
|
||||
1118 => 1091,
|
||||
1038 => 1091,
|
||||
1060 => 1092,
|
||||
1061 => 1093,
|
||||
1062 => 1094,
|
||||
1063 => 1095,
|
||||
1039 => 1119,
|
||||
1064 => 1096,
|
||||
1065 => 1097,
|
||||
1066 => 1098,
|
||||
1067 => 1099,
|
||||
1068 => 1100,
|
||||
1069 => 1101,
|
||||
1070 => 1102,
|
||||
1071 => 1103,
|
||||
];
|
||||
104
vendor/mpdf/mpdf/data/collations/Basque_Spain.php
vendored
Normal file
104
vendor/mpdf/mpdf/data/collations/Basque_Spain.php
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
229 => 97,
|
||||
197 => 97,
|
||||
230 => 97,
|
||||
198 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
240 => 100,
|
||||
208 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
248 => 111,
|
||||
216 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
254 => 116,
|
||||
222 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
90 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
];
|
||||
79
vendor/mpdf/mpdf/data/collations/Belarusian_Belarus.php
vendored
Normal file
79
vendor/mpdf/mpdf/data/collations/Belarusian_Belarus.php
vendored
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
<?php
|
||||
return [
|
||||
65 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
70 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1040 => 1072,
|
||||
1041 => 1073,
|
||||
1042 => 1074,
|
||||
1043 => 1075,
|
||||
1107 => 1075,
|
||||
1027 => 1075,
|
||||
1168 => 1169,
|
||||
1044 => 1076,
|
||||
1026 => 1106,
|
||||
1045 => 1077,
|
||||
1105 => 1077,
|
||||
1025 => 1077,
|
||||
1028 => 1108,
|
||||
1046 => 1078,
|
||||
1047 => 1079,
|
||||
1029 => 1109,
|
||||
1048 => 1080,
|
||||
1031 => 1111,
|
||||
1049 => 1081,
|
||||
1032 => 1112,
|
||||
1050 => 1082,
|
||||
1116 => 1082,
|
||||
1036 => 1082,
|
||||
1051 => 1083,
|
||||
1033 => 1113,
|
||||
1052 => 1084,
|
||||
1053 => 1085,
|
||||
1034 => 1114,
|
||||
1054 => 1086,
|
||||
1055 => 1087,
|
||||
1056 => 1088,
|
||||
1057 => 1089,
|
||||
1058 => 1090,
|
||||
1035 => 1115,
|
||||
1059 => 1091,
|
||||
1118 => 1091,
|
||||
1038 => 1091,
|
||||
1060 => 1092,
|
||||
1061 => 1093,
|
||||
1062 => 1094,
|
||||
1063 => 1095,
|
||||
1039 => 1119,
|
||||
1064 => 1096,
|
||||
1065 => 1097,
|
||||
1066 => 1098,
|
||||
1067 => 1099,
|
||||
1068 => 1100,
|
||||
1069 => 1101,
|
||||
1070 => 1102,
|
||||
1071 => 1103,
|
||||
];
|
||||
79
vendor/mpdf/mpdf/data/collations/Bosnian_(Cyrillic)_Bosnia_and_Herzegovina.php
vendored
Normal file
79
vendor/mpdf/mpdf/data/collations/Bosnian_(Cyrillic)_Bosnia_and_Herzegovina.php
vendored
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
<?php
|
||||
return [
|
||||
65 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
70 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1040 => 1072,
|
||||
1041 => 1073,
|
||||
1042 => 1074,
|
||||
1043 => 1075,
|
||||
1107 => 1075,
|
||||
1027 => 1075,
|
||||
1168 => 1169,
|
||||
1044 => 1076,
|
||||
1026 => 1106,
|
||||
1045 => 1077,
|
||||
1105 => 1077,
|
||||
1025 => 1077,
|
||||
1028 => 1108,
|
||||
1046 => 1078,
|
||||
1047 => 1079,
|
||||
1029 => 1109,
|
||||
1048 => 1080,
|
||||
1031 => 1111,
|
||||
1049 => 1081,
|
||||
1032 => 1112,
|
||||
1050 => 1082,
|
||||
1116 => 1082,
|
||||
1036 => 1082,
|
||||
1051 => 1083,
|
||||
1033 => 1113,
|
||||
1052 => 1084,
|
||||
1053 => 1085,
|
||||
1034 => 1114,
|
||||
1054 => 1086,
|
||||
1055 => 1087,
|
||||
1056 => 1088,
|
||||
1057 => 1089,
|
||||
1058 => 1090,
|
||||
1035 => 1115,
|
||||
1059 => 1091,
|
||||
1118 => 1091,
|
||||
1038 => 1091,
|
||||
1060 => 1092,
|
||||
1061 => 1093,
|
||||
1062 => 1094,
|
||||
1063 => 1095,
|
||||
1039 => 1119,
|
||||
1064 => 1096,
|
||||
1065 => 1097,
|
||||
1066 => 1098,
|
||||
1067 => 1099,
|
||||
1068 => 1100,
|
||||
1069 => 1101,
|
||||
1070 => 1102,
|
||||
1071 => 1103,
|
||||
];
|
||||
106
vendor/mpdf/mpdf/data/collations/Bosnian_(Latin)_Bosnia_and_Herzegovina.php
vendored
Normal file
106
vendor/mpdf/mpdf/data/collations/Bosnian_(Latin)_Bosnia_and_Herzegovina.php
vendored
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
<?php
|
||||
return [
|
||||
728 => 711,
|
||||
65 => 97,
|
||||
259 => 97,
|
||||
258 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
261 => 97,
|
||||
260 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
268 => 269,
|
||||
262 => 263,
|
||||
68 => 100,
|
||||
271 => 100,
|
||||
270 => 100,
|
||||
272 => 273,
|
||||
69 => 101,
|
||||
283 => 101,
|
||||
282 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
281 => 101,
|
||||
280 => 101,
|
||||
70 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
318 => 108,
|
||||
317 => 108,
|
||||
314 => 108,
|
||||
313 => 108,
|
||||
322 => 108,
|
||||
321 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
328 => 110,
|
||||
327 => 110,
|
||||
324 => 110,
|
||||
323 => 110,
|
||||
79 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
337 => 111,
|
||||
336 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
345 => 114,
|
||||
344 => 114,
|
||||
341 => 114,
|
||||
340 => 114,
|
||||
83 => 115,
|
||||
347 => 115,
|
||||
346 => 115,
|
||||
351 => 115,
|
||||
350 => 115,
|
||||
223 => 115,
|
||||
352 => 353,
|
||||
84 => 116,
|
||||
357 => 116,
|
||||
356 => 116,
|
||||
355 => 116,
|
||||
354 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
367 => 117,
|
||||
366 => 117,
|
||||
369 => 117,
|
||||
368 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
90 => 122,
|
||||
378 => 122,
|
||||
377 => 122,
|
||||
380 => 122,
|
||||
379 => 122,
|
||||
381 => 382,
|
||||
];
|
||||
104
vendor/mpdf/mpdf/data/collations/Breton_France.php
vendored
Normal file
104
vendor/mpdf/mpdf/data/collations/Breton_France.php
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
229 => 97,
|
||||
197 => 97,
|
||||
230 => 97,
|
||||
198 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
240 => 100,
|
||||
208 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
248 => 111,
|
||||
216 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
254 => 116,
|
||||
222 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
90 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
];
|
||||
79
vendor/mpdf/mpdf/data/collations/Bulgarian_Bulgaria.php
vendored
Normal file
79
vendor/mpdf/mpdf/data/collations/Bulgarian_Bulgaria.php
vendored
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
<?php
|
||||
return [
|
||||
65 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
70 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1040 => 1072,
|
||||
1041 => 1073,
|
||||
1042 => 1074,
|
||||
1043 => 1075,
|
||||
1107 => 1075,
|
||||
1027 => 1075,
|
||||
1168 => 1169,
|
||||
1044 => 1076,
|
||||
1026 => 1106,
|
||||
1045 => 1077,
|
||||
1105 => 1077,
|
||||
1025 => 1077,
|
||||
1028 => 1108,
|
||||
1046 => 1078,
|
||||
1047 => 1079,
|
||||
1029 => 1109,
|
||||
1048 => 1080,
|
||||
1031 => 1111,
|
||||
1049 => 1081,
|
||||
1032 => 1112,
|
||||
1050 => 1082,
|
||||
1116 => 1082,
|
||||
1036 => 1082,
|
||||
1051 => 1083,
|
||||
1033 => 1113,
|
||||
1052 => 1084,
|
||||
1053 => 1085,
|
||||
1034 => 1114,
|
||||
1054 => 1086,
|
||||
1055 => 1087,
|
||||
1056 => 1088,
|
||||
1057 => 1089,
|
||||
1058 => 1090,
|
||||
1035 => 1115,
|
||||
1059 => 1091,
|
||||
1118 => 1091,
|
||||
1038 => 1091,
|
||||
1060 => 1092,
|
||||
1061 => 1093,
|
||||
1062 => 1094,
|
||||
1063 => 1095,
|
||||
1039 => 1119,
|
||||
1064 => 1096,
|
||||
1065 => 1097,
|
||||
1066 => 1098,
|
||||
1067 => 1099,
|
||||
1068 => 1100,
|
||||
1069 => 1101,
|
||||
1070 => 1102,
|
||||
1071 => 1103,
|
||||
];
|
||||
104
vendor/mpdf/mpdf/data/collations/Catalan_Spain.php
vendored
Normal file
104
vendor/mpdf/mpdf/data/collations/Catalan_Spain.php
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
229 => 97,
|
||||
197 => 97,
|
||||
230 => 97,
|
||||
198 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
240 => 100,
|
||||
208 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
248 => 111,
|
||||
216 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
254 => 116,
|
||||
222 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
90 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
];
|
||||
104
vendor/mpdf/mpdf/data/collations/Corsican_France.php
vendored
Normal file
104
vendor/mpdf/mpdf/data/collations/Corsican_France.php
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
229 => 97,
|
||||
197 => 97,
|
||||
230 => 97,
|
||||
198 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
240 => 100,
|
||||
208 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
248 => 111,
|
||||
216 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
254 => 116,
|
||||
222 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
90 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
];
|
||||
106
vendor/mpdf/mpdf/data/collations/Croatian_(Latin)_Bosnia_and_Herzegovina.php
vendored
Normal file
106
vendor/mpdf/mpdf/data/collations/Croatian_(Latin)_Bosnia_and_Herzegovina.php
vendored
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
<?php
|
||||
return [
|
||||
728 => 711,
|
||||
65 => 97,
|
||||
259 => 97,
|
||||
258 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
261 => 97,
|
||||
260 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
268 => 269,
|
||||
262 => 263,
|
||||
68 => 100,
|
||||
271 => 100,
|
||||
270 => 100,
|
||||
272 => 273,
|
||||
69 => 101,
|
||||
283 => 101,
|
||||
282 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
281 => 101,
|
||||
280 => 101,
|
||||
70 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
318 => 108,
|
||||
317 => 108,
|
||||
314 => 108,
|
||||
313 => 108,
|
||||
322 => 108,
|
||||
321 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
328 => 110,
|
||||
327 => 110,
|
||||
324 => 110,
|
||||
323 => 110,
|
||||
79 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
337 => 111,
|
||||
336 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
345 => 114,
|
||||
344 => 114,
|
||||
341 => 114,
|
||||
340 => 114,
|
||||
83 => 115,
|
||||
347 => 115,
|
||||
346 => 115,
|
||||
351 => 115,
|
||||
350 => 115,
|
||||
223 => 115,
|
||||
352 => 353,
|
||||
84 => 116,
|
||||
357 => 116,
|
||||
356 => 116,
|
||||
355 => 116,
|
||||
354 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
367 => 117,
|
||||
366 => 117,
|
||||
369 => 117,
|
||||
368 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
90 => 122,
|
||||
378 => 122,
|
||||
377 => 122,
|
||||
380 => 122,
|
||||
379 => 122,
|
||||
381 => 382,
|
||||
];
|
||||
106
vendor/mpdf/mpdf/data/collations/Croatian_Croatia.php
vendored
Normal file
106
vendor/mpdf/mpdf/data/collations/Croatian_Croatia.php
vendored
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
<?php
|
||||
return [
|
||||
728 => 711,
|
||||
65 => 97,
|
||||
259 => 97,
|
||||
258 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
261 => 97,
|
||||
260 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
268 => 269,
|
||||
262 => 263,
|
||||
68 => 100,
|
||||
271 => 100,
|
||||
270 => 100,
|
||||
272 => 273,
|
||||
69 => 101,
|
||||
283 => 101,
|
||||
282 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
281 => 101,
|
||||
280 => 101,
|
||||
70 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
318 => 108,
|
||||
317 => 108,
|
||||
314 => 108,
|
||||
313 => 108,
|
||||
322 => 108,
|
||||
321 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
328 => 110,
|
||||
327 => 110,
|
||||
324 => 110,
|
||||
323 => 110,
|
||||
79 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
337 => 111,
|
||||
336 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
345 => 114,
|
||||
344 => 114,
|
||||
341 => 114,
|
||||
340 => 114,
|
||||
83 => 115,
|
||||
347 => 115,
|
||||
346 => 115,
|
||||
351 => 115,
|
||||
350 => 115,
|
||||
223 => 115,
|
||||
352 => 353,
|
||||
84 => 116,
|
||||
357 => 116,
|
||||
356 => 116,
|
||||
355 => 116,
|
||||
354 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
367 => 117,
|
||||
366 => 117,
|
||||
369 => 117,
|
||||
368 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
90 => 122,
|
||||
378 => 122,
|
||||
377 => 122,
|
||||
380 => 122,
|
||||
379 => 122,
|
||||
381 => 382,
|
||||
];
|
||||
107
vendor/mpdf/mpdf/data/collations/Czech_Czech_Republic.php
vendored
Normal file
107
vendor/mpdf/mpdf/data/collations/Czech_Czech_Republic.php
vendored
Normal file
|
|
@ -0,0 +1,107 @@
|
|||
<?php
|
||||
return [
|
||||
728 => 711,
|
||||
65 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
259 => 97,
|
||||
258 => 97,
|
||||
261 => 97,
|
||||
260 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
263 => 99,
|
||||
262 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
268 => 269,
|
||||
68 => 100,
|
||||
271 => 100,
|
||||
270 => 100,
|
||||
273 => 100,
|
||||
272 => 100,
|
||||
69 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
283 => 101,
|
||||
282 => 101,
|
||||
281 => 101,
|
||||
280 => 101,
|
||||
70 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
314 => 108,
|
||||
313 => 108,
|
||||
318 => 108,
|
||||
317 => 108,
|
||||
322 => 108,
|
||||
321 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
324 => 110,
|
||||
323 => 110,
|
||||
328 => 110,
|
||||
327 => 110,
|
||||
79 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
337 => 111,
|
||||
336 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
341 => 114,
|
||||
340 => 114,
|
||||
344 => 345,
|
||||
83 => 115,
|
||||
347 => 115,
|
||||
346 => 115,
|
||||
351 => 115,
|
||||
350 => 115,
|
||||
223 => 115,
|
||||
352 => 353,
|
||||
84 => 116,
|
||||
357 => 116,
|
||||
356 => 116,
|
||||
355 => 116,
|
||||
354 => 116,
|
||||
85 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
367 => 117,
|
||||
366 => 117,
|
||||
369 => 117,
|
||||
368 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
90 => 122,
|
||||
380 => 122,
|
||||
379 => 122,
|
||||
378 => 122,
|
||||
377 => 122,
|
||||
381 => 382,
|
||||
];
|
||||
101
vendor/mpdf/mpdf/data/collations/Danish_Denmark.php
vendored
Normal file
101
vendor/mpdf/mpdf/data/collations/Danish_Denmark.php
vendored
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
240 => 100,
|
||||
208 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
254 => 116,
|
||||
222 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
252 => 121,
|
||||
220 => 121,
|
||||
90 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
198 => 230,
|
||||
228 => 230,
|
||||
196 => 230,
|
||||
216 => 248,
|
||||
246 => 248,
|
||||
214 => 248,
|
||||
197 => 229,
|
||||
];
|
||||
64
vendor/mpdf/mpdf/data/collations/Dari_Afghanistan.php
vendored
Normal file
64
vendor/mpdf/mpdf/data/collations/Dari_Afghanistan.php
vendored
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
<?php
|
||||
return [
|
||||
173 => 8205,
|
||||
1600 => 8205,
|
||||
1611 => 8205,
|
||||
1612 => 8205,
|
||||
1613 => 8205,
|
||||
1614 => 8205,
|
||||
1615 => 8205,
|
||||
1616 => 8205,
|
||||
1618 => 8205,
|
||||
1617 => 8205,
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
224 => 97,
|
||||
226 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
68 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
232 => 101,
|
||||
234 => 101,
|
||||
235 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
238 => 105,
|
||||
239 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
79 => 111,
|
||||
244 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
84 => 116,
|
||||
85 => 117,
|
||||
249 => 117,
|
||||
251 => 117,
|
||||
252 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
90 => 122,
|
||||
1573 => 1575,
|
||||
1571 => 1575,
|
||||
1606 => 1722,
|
||||
1726 => 1729,
|
||||
1572 => 1608,
|
||||
1574 => 1746,
|
||||
];
|
||||
104
vendor/mpdf/mpdf/data/collations/Dutch_Belgium.php
vendored
Normal file
104
vendor/mpdf/mpdf/data/collations/Dutch_Belgium.php
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
229 => 97,
|
||||
197 => 97,
|
||||
230 => 97,
|
||||
198 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
240 => 100,
|
||||
208 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
248 => 111,
|
||||
216 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
254 => 116,
|
||||
222 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
90 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
];
|
||||
104
vendor/mpdf/mpdf/data/collations/Dutch_Netherlands.php
vendored
Normal file
104
vendor/mpdf/mpdf/data/collations/Dutch_Netherlands.php
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
229 => 97,
|
||||
197 => 97,
|
||||
230 => 97,
|
||||
198 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
240 => 100,
|
||||
208 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
248 => 111,
|
||||
216 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
254 => 116,
|
||||
222 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
90 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
];
|
||||
104
vendor/mpdf/mpdf/data/collations/English_Australia.php
vendored
Normal file
104
vendor/mpdf/mpdf/data/collations/English_Australia.php
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
229 => 97,
|
||||
197 => 97,
|
||||
230 => 97,
|
||||
198 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
240 => 100,
|
||||
208 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
248 => 111,
|
||||
216 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
254 => 116,
|
||||
222 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
90 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
];
|
||||
104
vendor/mpdf/mpdf/data/collations/English_Belize.php
vendored
Normal file
104
vendor/mpdf/mpdf/data/collations/English_Belize.php
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
229 => 97,
|
||||
197 => 97,
|
||||
230 => 97,
|
||||
198 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
240 => 100,
|
||||
208 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
248 => 111,
|
||||
216 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
254 => 116,
|
||||
222 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
90 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
];
|
||||
104
vendor/mpdf/mpdf/data/collations/English_Canada.php
vendored
Normal file
104
vendor/mpdf/mpdf/data/collations/English_Canada.php
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
229 => 97,
|
||||
197 => 97,
|
||||
230 => 97,
|
||||
198 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
240 => 100,
|
||||
208 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
248 => 111,
|
||||
216 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
254 => 116,
|
||||
222 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
90 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
];
|
||||
104
vendor/mpdf/mpdf/data/collations/English_Caribbean.php
vendored
Normal file
104
vendor/mpdf/mpdf/data/collations/English_Caribbean.php
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
229 => 97,
|
||||
197 => 97,
|
||||
230 => 97,
|
||||
198 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
240 => 100,
|
||||
208 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
248 => 111,
|
||||
216 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
254 => 116,
|
||||
222 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
90 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
];
|
||||
104
vendor/mpdf/mpdf/data/collations/English_India.php
vendored
Normal file
104
vendor/mpdf/mpdf/data/collations/English_India.php
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
229 => 97,
|
||||
197 => 97,
|
||||
230 => 97,
|
||||
198 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
240 => 100,
|
||||
208 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
248 => 111,
|
||||
216 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
254 => 116,
|
||||
222 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
90 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
];
|
||||
104
vendor/mpdf/mpdf/data/collations/English_Ireland.php
vendored
Normal file
104
vendor/mpdf/mpdf/data/collations/English_Ireland.php
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
229 => 97,
|
||||
197 => 97,
|
||||
230 => 97,
|
||||
198 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
240 => 100,
|
||||
208 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
248 => 111,
|
||||
216 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
254 => 116,
|
||||
222 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
90 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
];
|
||||
104
vendor/mpdf/mpdf/data/collations/English_Jamaica.php
vendored
Normal file
104
vendor/mpdf/mpdf/data/collations/English_Jamaica.php
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
229 => 97,
|
||||
197 => 97,
|
||||
230 => 97,
|
||||
198 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
240 => 100,
|
||||
208 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
248 => 111,
|
||||
216 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
254 => 116,
|
||||
222 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
90 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
];
|
||||
104
vendor/mpdf/mpdf/data/collations/English_Malaysia.php
vendored
Normal file
104
vendor/mpdf/mpdf/data/collations/English_Malaysia.php
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
229 => 97,
|
||||
197 => 97,
|
||||
230 => 97,
|
||||
198 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
240 => 100,
|
||||
208 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
248 => 111,
|
||||
216 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
254 => 116,
|
||||
222 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
90 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
];
|
||||
104
vendor/mpdf/mpdf/data/collations/English_New_Zealand.php
vendored
Normal file
104
vendor/mpdf/mpdf/data/collations/English_New_Zealand.php
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
229 => 97,
|
||||
197 => 97,
|
||||
230 => 97,
|
||||
198 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
240 => 100,
|
||||
208 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
248 => 111,
|
||||
216 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
254 => 116,
|
||||
222 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
90 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
];
|
||||
104
vendor/mpdf/mpdf/data/collations/English_Republic_of_the_Philippines.php
vendored
Normal file
104
vendor/mpdf/mpdf/data/collations/English_Republic_of_the_Philippines.php
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
229 => 97,
|
||||
197 => 97,
|
||||
230 => 97,
|
||||
198 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
240 => 100,
|
||||
208 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
248 => 111,
|
||||
216 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
254 => 116,
|
||||
222 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
90 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
];
|
||||
104
vendor/mpdf/mpdf/data/collations/English_Singapore.php
vendored
Normal file
104
vendor/mpdf/mpdf/data/collations/English_Singapore.php
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
229 => 97,
|
||||
197 => 97,
|
||||
230 => 97,
|
||||
198 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
240 => 100,
|
||||
208 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
248 => 111,
|
||||
216 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
254 => 116,
|
||||
222 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
90 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
];
|
||||
104
vendor/mpdf/mpdf/data/collations/English_South_Africa.php
vendored
Normal file
104
vendor/mpdf/mpdf/data/collations/English_South_Africa.php
vendored
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
<?php
|
||||
return [
|
||||
710 => 94,
|
||||
189 => 188,
|
||||
190 => 179,
|
||||
65 => 97,
|
||||
170 => 97,
|
||||
225 => 97,
|
||||
193 => 97,
|
||||
224 => 97,
|
||||
192 => 97,
|
||||
226 => 97,
|
||||
194 => 97,
|
||||
228 => 97,
|
||||
196 => 97,
|
||||
227 => 97,
|
||||
195 => 97,
|
||||
229 => 97,
|
||||
197 => 97,
|
||||
230 => 97,
|
||||
198 => 97,
|
||||
66 => 98,
|
||||
67 => 99,
|
||||
231 => 99,
|
||||
199 => 99,
|
||||
68 => 100,
|
||||
240 => 100,
|
||||
208 => 100,
|
||||
69 => 101,
|
||||
233 => 101,
|
||||
201 => 101,
|
||||
232 => 101,
|
||||
200 => 101,
|
||||
234 => 101,
|
||||
202 => 101,
|
||||
235 => 101,
|
||||
203 => 101,
|
||||
70 => 102,
|
||||
402 => 102,
|
||||
71 => 103,
|
||||
72 => 104,
|
||||
73 => 105,
|
||||
237 => 105,
|
||||
205 => 105,
|
||||
236 => 105,
|
||||
204 => 105,
|
||||
238 => 105,
|
||||
206 => 105,
|
||||
239 => 105,
|
||||
207 => 105,
|
||||
74 => 106,
|
||||
75 => 107,
|
||||
76 => 108,
|
||||
77 => 109,
|
||||
78 => 110,
|
||||
241 => 110,
|
||||
209 => 110,
|
||||
79 => 111,
|
||||
186 => 111,
|
||||
243 => 111,
|
||||
211 => 111,
|
||||
242 => 111,
|
||||
210 => 111,
|
||||
244 => 111,
|
||||
212 => 111,
|
||||
246 => 111,
|
||||
214 => 111,
|
||||
245 => 111,
|
||||
213 => 111,
|
||||
248 => 111,
|
||||
216 => 111,
|
||||
339 => 111,
|
||||
338 => 111,
|
||||
80 => 112,
|
||||
81 => 113,
|
||||
82 => 114,
|
||||
83 => 115,
|
||||
353 => 115,
|
||||
352 => 115,
|
||||
223 => 115,
|
||||
84 => 116,
|
||||
254 => 116,
|
||||
222 => 116,
|
||||
85 => 117,
|
||||
250 => 117,
|
||||
218 => 117,
|
||||
249 => 117,
|
||||
217 => 117,
|
||||
251 => 117,
|
||||
219 => 117,
|
||||
252 => 117,
|
||||
220 => 117,
|
||||
86 => 118,
|
||||
87 => 119,
|
||||
88 => 120,
|
||||
89 => 121,
|
||||
253 => 121,
|
||||
221 => 121,
|
||||
255 => 121,
|
||||
376 => 121,
|
||||
90 => 122,
|
||||
382 => 122,
|
||||
381 => 122,
|
||||
];
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user