mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-02 22:47:50 -05:00
(#116, #361) Remove get_form_width() from controllers, add new class to define modal width Add bootstrap validation markup to edit forms
16 lines
400 B
PHP
16 lines
400 B
PHP
<?php
|
|
/*
|
|
This interface is implemented by any controller that keeps track of data items, such
|
|
as the customers, employees, and items controllers.
|
|
*/
|
|
interface iData_controller
|
|
{
|
|
public function index();
|
|
public function search();
|
|
public function suggest();
|
|
public function get_row();
|
|
public function view($data_item_id=-1);
|
|
public function save($data_item_id=-1);
|
|
public function delete();
|
|
}
|
|
?>
|