mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-01 16:47:34 -04:00
* Fixes for datatables * Implement a BaseModel * Working on reusable header data model * Working on adding session variables * Clean up header data * Random Data Seeder * working on searching datatables across relationships. * Working on transforming primary keys between client and server facinglogic * Updated assets
61 lines
715 B
PHP
61 lines
715 B
PHP
<?php
|
|
|
|
namespace App\Models\Presenters;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
|
use Hashids\Hashids;
|
|
use Laracasts\Presenter\Presenter;
|
|
use URL;
|
|
use Utils;
|
|
use stdClass;
|
|
|
|
class EntityPresenter extends Presenter
|
|
{
|
|
use MakesHash;
|
|
|
|
public function id()
|
|
{
|
|
return $this->encodePrimaryKey($this->entity->id);
|
|
}
|
|
|
|
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)
|
|
{
|
|
|
|
}
|
|
|
|
}
|