mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
4c23d43138
* Refactor designs to remove whitespace * enable dummy data for templating * Insert faker data into templates * Fixes for user deletion * Documentation on User controller: * Working on app setup * Files for app setup * Working on Setup * Final fixes for setup controller * Fixes for setup * Fixes for first install * Minor fixes
188 lines
4.8 KiB
PHP
188 lines
4.8 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Designs;
|
|
|
|
class Modern extends AbstractDesign
|
|
{
|
|
|
|
public function __construct() {
|
|
}
|
|
|
|
|
|
public function includes()
|
|
{
|
|
return '<title>$number</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<link href="$app_url/css/tailwind-1.2.0.css" rel="stylesheet">
|
|
<style>
|
|
body {font-size:90%}
|
|
.table_header_thead_class {text-align:left; text-align:left; color:#fff; background-color:#1a202c;}
|
|
.table_header_td_class {padding-left:1rem;padding-right:1rem; padding-top:.5rem;padding-bottom:.5rem}
|
|
.table_body_td_class {border-top-width:1px; border-bottom-width:1px; border-color:#1a202c; padding-left:1rem;padding-right:1rem; padding-top:1rem;padding-bottom:1rem;}
|
|
|
|
@media screen {
|
|
div.div_header {
|
|
display: flex;
|
|
}
|
|
div.div_footer {
|
|
display: flex;
|
|
}
|
|
}
|
|
@media print {
|
|
div.div_footer {
|
|
display: flex;
|
|
position: running(footer);
|
|
width: 100%;
|
|
}
|
|
div.div_header {
|
|
display: flex;
|
|
position: running(header);
|
|
width:100%;
|
|
}
|
|
}
|
|
|
|
footer, header, hgroup, menu, nav, section {
|
|
display: block;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>';
|
|
}
|
|
|
|
|
|
public function header() {
|
|
|
|
return '<div class="div_header bg-orange-600 flex justify-between py-12 px-12" style="page-break-inside: avoid;">
|
|
<div class="w-1/2">
|
|
<h1 class="text-white font-bold text-5xl">$company.name</h1>
|
|
</div>
|
|
<div class="w-1/2 flex justify-end">
|
|
<div class="w-56 flex flex-col text-white">
|
|
$entity_labels
|
|
</div>
|
|
<div class="w-32 flex flex-col text-left text-white">
|
|
$entity_details
|
|
</div>
|
|
</div>
|
|
</div>';
|
|
|
|
}
|
|
|
|
public function body() {
|
|
|
|
return '<section>
|
|
<div class="flex justify-between px-12 pt-12">
|
|
<div class="w-1/2">
|
|
$company_logo
|
|
</div>
|
|
<div class="w-1/2 flex justify-end">
|
|
<div class="w-56 flex flex-col">
|
|
$client_details
|
|
</div>
|
|
<div class="w-32">
|
|
<!-- -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="px-12 pt-5 pb-20">
|
|
<table class="w-full table-auto mt-8">
|
|
<thead class="text-left text-white bg-gray-900 display: table-header-group;">
|
|
$product_table_header
|
|
</thead>
|
|
<tbody>
|
|
$product_table_body
|
|
</tbody>
|
|
</table>
|
|
<table class="w-full table-auto mt-8">
|
|
<thead class="text-left text-white bg-gray-900 display: table-header-group;">
|
|
$task_table_header
|
|
</thead>
|
|
<tbody>
|
|
$task_table_body
|
|
</tbody>
|
|
</table>';
|
|
|
|
}
|
|
|
|
public function task() {
|
|
return '';
|
|
}
|
|
|
|
public function product()
|
|
{
|
|
return '';
|
|
}
|
|
|
|
public function footer() {
|
|
|
|
return '
|
|
<div class="flex px-4 mt-6 w-full" style="page-break-inside: avoid;">
|
|
<div class="w-1/2">
|
|
$entity.public_notes
|
|
</div>
|
|
<div class="w-1/2 flex" style="page-break-inside: avoid;">
|
|
<div class="w-1/2 text-right flex flex-col" style="page-break-inside: avoid;">
|
|
$discount_label
|
|
$total_tax_labels
|
|
$line_tax_labels
|
|
</div>
|
|
<div class="w-1/2 text-right flex flex-col" style="page-break-inside: avoid;">
|
|
$discount
|
|
$total_tax_values
|
|
$line_tax_values
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="flex px-4 mt-4 w-full items-end mt-5" style="page-break-inside: avoid;">
|
|
<div class="w-1/2" style="page-break-inside: avoid;">
|
|
<p class="font-semibold">$terms_label</p>
|
|
$terms
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-8 px-4 py-2 bg-gray-900 text-white" style="page-break-inside: avoid;">
|
|
<div class="w-1/2"></div>
|
|
<div class="w-auto flex justify-end" style="page-break-inside: avoid;">
|
|
<div class="w-56" style="page-break-inside: avoid;">
|
|
<p class="font-bold">$balance_due_label</p>
|
|
</div>
|
|
<p>$balance_due</p>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
<footer>
|
|
<div class="div_footer bg-orange-600 flex justify-between py-8 px-12" style="page-break-inside: avoid;">
|
|
<div class="w-1/2">
|
|
<!-- // -->
|
|
</div>
|
|
<div class="w-1/2 flex justify-end">
|
|
<div class="w-56 flex flex-col text-white">
|
|
$company_details
|
|
</div>
|
|
<div class="w-32 flex flex-col text-left text-white">
|
|
$company_address
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</html>
|
|
';
|
|
|
|
}
|
|
|
|
}
|