1
0
Fork 0
mirror of https://github.com/Oreolek/kangana.git synced 2024-07-02 22:55:04 +03:00
kangana/application/classes/Controller/Client.php

22 lines
351 B
PHP
Raw Normal View History

<?php defined('SYSPATH') or die('No direct script access.');
/**
* Client controller.
**/
class Controller_Client extends Controller_Layout {
2014-01-16 14:01:14 +02:00
/**
* Manually add a client.
**/
public function action_add()
{
}
/**
* Search a client.
**/
public function action_search()
{
$this->template = new View_Client_Search;
}
}