mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-12-02 15:15:31 -05:00
* Client and System Notifications * Fix for group settings currency not applying correctly. * Split head out of design in order to reuse headers and footers * export the designs * Fixes for pdf_variables
28 lines
555 B
PHP
28 lines
555 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 table();
|
|
|
|
abstract public function footer();
|
|
|
|
abstract public function table_styles();
|
|
|
|
} |