/home/techb158/exp.abdallabala.com/application/controllers
Edit: /home/techb158/exp.abdallabala.com/application/controllers/search.php (2125B)
assign('_application_menu', 'contacts');
$ui->assign('_st', $_L['Search']);
$ui->assign('_title', $_L['Accounts'] . '- ' . $config['CompanyName']);
$action = $routes['1'];
$user = User::_info();
$ui->assign('user', $user);
switch ($action) {
case 'ps':
$type = _post('stype');
$name = _post('txtsearch');
$d = ORM::for_table('sys_items')
->where('type', $type)
->where_like('name', "%$name%")
->order_by_asc('name')
->find_many();
if ($d) {
echo '
';
} else {
echo '
Nothing Found
';
}
break;
default:
echo 'action not defined';
}