42 lines
895 B
PHP
42 lines
895 B
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 Versions
|
|
*/
|
|
class Versions extends Admin_Controller
|
|
{
|
|
/**
|
|
* Versions constructor.
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
$this->load->model('mdl_versions');
|
|
}
|
|
|
|
/**
|
|
* @param int $page
|
|
*/
|
|
public function index($page = 0)
|
|
{
|
|
$this->mdl_versions->paginate(site_url('versions/index'), $page);
|
|
$versions = $this->mdl_versions->result();
|
|
|
|
$this->layout->set('versions', $versions);
|
|
$this->layout->buffer('content', 'settings/versions');
|
|
$this->layout->render();
|
|
}
|
|
|
|
}
|