mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-10-28 04:52:53 -04:00
* Default database connection - set defaults for engine and strict * Working on tests for refactored model * Fixes for tests, use polymorphic relationships for Invitations * skin the password reset pages
54 lines
547 B
PHP
54 lines
547 B
PHP
<?php
|
|
|
|
namespace App\Models\Presenters;
|
|
|
|
use Laracasts\Presenter\Presenter;
|
|
use URL;
|
|
use Utils;
|
|
use stdClass;
|
|
|
|
class EntityPresenter extends Presenter
|
|
{
|
|
|
|
public function url()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
public function path()
|
|
{
|
|
|
|
}
|
|
|
|
public function editUrl()
|
|
{
|
|
}
|
|
|
|
public function statusLabel($label = false)
|
|
{
|
|
|
|
}
|
|
|
|
public function statusColor()
|
|
{
|
|
|
|
}
|
|
|
|
public function link()
|
|
{
|
|
|
|
}
|
|
|
|
public function titledName()
|
|
{
|
|
|
|
}
|
|
|
|
public function calendarEvent($subColors = false)
|
|
{
|
|
|
|
}
|
|
|
|
}
|