-
Notifications
You must be signed in to change notification settings - Fork 153
/
searchExtended.php
48 lines (38 loc) · 1.1 KB
/
searchExtended.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
/**
* Copyright (c) UNA, Inc - https://una.io
* MIT License - https://opensource.org/licenses/MIT
*
* @defgroup UnaCore UNA Core
* @{
*/
require_once('./inc/header.inc.php');
require_once(BX_DIRECTORY_PATH_INC . "design.inc.php");
bx_import('BxDolLanguages');
check_logged();
$sObject = isset($_REQUEST['object']) ? bx_process_input($_REQUEST['object']) : '';
$sAction = isset($_REQUEST['action']) && preg_match ('/^[A-Za-z_-]+$/', $_REQUEST['action']) ? bx_process_input($_REQUEST['action']) : '';
if(!empty($sObject)) {
$oSearch = BxDolSearchExtended::getObjectInstance($sObject);
if(!$oSearch || !$sAction) {
echoJson(array());
exit;
}
$sMethod = 'action' . bx_gen_method_name($sAction);
if(!method_exists($oSearch, $sMethod)) {
echoJson(array());
exit;
}
$oSearch->$sMethod();
exit;
}
if(!empty($sAction)) {
$sMethod = 'action' . bx_gen_method_name($sAction);
if(!method_exists('BxDolSearchExtended', $sMethod)) {
echoJson(array());
exit;
}
BxDolSearchExtended::$sMethod();
exit;
}
/** @} */