mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-02 23:27:34 -05:00
* remove jobs table * Working on notifications * Working on notifications * Fixes for setting group level currency id on new client * Working on repeating headers * Use CSS to force headers and footers * recurring headers and footers * Preview PDF * Working on PDF Preview
30 lines
604 B
PHP
30 lines
604 B
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;
|
|
|
|
abstract class AbstractDesign
|
|
{
|
|
abstract public function include();
|
|
|
|
abstract public function header();
|
|
|
|
abstract public function body();
|
|
|
|
abstract public function product_table();
|
|
|
|
abstract public function task_table();
|
|
|
|
abstract public function footer();
|
|
|
|
abstract public function table_styles();
|
|
|
|
} |