-
Notifications
You must be signed in to change notification settings - Fork 4
/
en.dict.action-shell-exec.php
executable file
·30 lines (26 loc) · 1.33 KB
/
en.dict.action-shell-exec.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
<?php
/**
* Localized data
*
* @copyright Copyright (C) 2016 Vladimir Kunin <[email protected]>
* @license http://opensource.org/licenses/AGPL-3.0
*/
Dict::Add('EN US', 'English', 'English', array(
'Class:ActionShellExec' => 'Script execution',
'Class:ActionShellExec+' => 'Action shell-script execution',
'Class:ActionShellExec/Attribute:script_path' => 'Path',
'Class:ActionShellExec/Attribute:script_path+' => 'Path to the script',
'Class:ActionShellExec/Attribute:script_path?' => 'Check the permissions on the script can be executed!!',
'Class:ActionShellExec/Attribute:params' => 'Parameters',
'Class:ActionShellExec/Attribute:params+' => 'Passed parameters, one per line',
'Class:ActionShellExec/Attribute:params?' => "Examples (how to set => how to pick up in the script):
\$this->name\$ => \$THIS_NAME
\$this->caller_id->org_id\$ => \$THIS_CALLER_ID_ORG_ID
START = \$this->start_date\$ => \$START
DESC = \$this->html(description)\$ => \$DESC
YOUR_ENV_VAR = \$this->attcode\$ => \$YOUR_ENV_VAR",
'Class:EventNotificationShellExec' => 'Notification of script execution',
'Class:EventNotificationShellExec+' => 'Notification of script execution',
'Class:EventNotificationShellExec/Attribute:log' => 'Log',
'Class:EventNotificationShellExec/Attribute:log+' => 'Log',
));