36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
<?php
|
|
if (!defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
/*
|
|
* InvoicePlane
|
|
*
|
|
* @author InvoicePlane Developers & Contributors
|
|
* @copyright Copyright (c) 2012 - 2017 InvoicePlane.com
|
|
* @license https://invoiceplane.com/license.txt
|
|
* @link https://invoiceplane.com
|
|
*/
|
|
|
|
/**
|
|
* Class Guest
|
|
*/
|
|
class Guest extends Guest_Controller
|
|
{
|
|
public function index()
|
|
{
|
|
$this->load->model('quotes/mdl_quotes');
|
|
$this->load->model('invoices/mdl_invoices');
|
|
|
|
$this->layout->set(
|
|
array(
|
|
'overdue_invoices' => $this->mdl_invoices->is_overdue()->where_in('ip_invoices.client_id', $this->user_clients)->get()->result(),
|
|
'open_quotes' => $this->mdl_quotes->is_open()->where_in('ip_quotes.client_id', $this->user_clients)->get()->result(),
|
|
'open_invoices' => $this->mdl_invoices->is_open()->where_in('ip_invoices.client_id', $this->user_clients)->get()->result()
|
|
)
|
|
);
|
|
|
|
$this->layout->buffer('content', 'guest/index');
|
|
$this->layout->render('layout_guest');
|
|
}
|
|
|
|
}
|