Browse
For agents
About
SupportCandy – AI Customer Support Ticket System & Live Chatbot Agent
/
trunk
SupportCandy – AI Customer Support Ticket System & Live Chatbot Agent
vtrunk
Switch version
3.5.3
3.5.2
3.5.1
3.4.9
3.5.0
3.4.8
3.4.7
trunk
2.3.1
3.3.6
3.3.7
3.3.8
3.3.9
3.4.0
3.4.1
3.4.2
3.4.3
3.4.4
3.4.5
3.4.6
Overview
Code
supportcandy
/
includes
/
admin
/
ai-assistant
/
index.php
index.php
in SupportCandy – AI Customer Support Ticket System & Live Chatbot Agent trunk, at includes/admin/ai-assistant/index.php
11 lines
199 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
3
foreach
(
glob
(
__DIR__
.
'
/admin/*.php
'
)
as
$
filename
)
{
4
include_once
$
filename
;
5
}
6
7
//
Load models.
8
foreach
(
glob
(
__DIR__
.
'
/models/*.php
'
)
as
$
filename
)
{
9
include_once
$
filename
;
10
}
11