Bearsampp 2025.8.29
Loading...
Searching...
No Matches
TplAestan Class Reference

Static Public Member Functions

static getActionServiceRestart ($service)
static getActionServicesClose ()
static getActionServiceStart ($service)
static getActionServiceStop ($service)
static getGlyphFlah ($lang)
static getItemActionServiceRestart ($service)
static getItemActionServicesClose ()
static getItemActionServiceStart ($service)
static getItemActionServiceStop ($service)
static getItemConsoleZ ($caption, $glyph, $id=null, $title=null, $initDir=null, $command=null)
static getItemExe ($caption, $exe, $glyph, $params=null)
static getItemExplore ($caption, $path)
static getItemLink ($caption, $link, $local=false, $glyph=self::GLYPH_WEB_PAGE)
static getItemNotepad ($caption, $path)
static getItemSeparator ()
static getSectionConfig ()
static getSectionMenuLeftSettings ($caption)
static getSectionMenuRightSettings ()
static getSectionMessages ()

Data Fields

const GLYPH_ABOUT = 21
const GLYPH_ADD = 1
const GLYPH_BROWSER = 5
const GLYPH_BRUNO = 61
const GLYPH_CHECK = 13
const GLYPH_COMPOSER = 37
const GLYPH_CONSOLEZ = 0
const GLYPH_DEBUG = 31
const GLYPH_EXIT = 20
const GLYPH_FILE = 6
const GLYPH_FOLDER_CLOSE = 3
const GLYPH_FOLDER_DISABLED = 48
const GLYPH_FOLDER_ENABLED = 49
const GLYPH_FOLDER_OPEN = 2
const GLYPH_GHOSTSCRIPT = 56
const GLYPH_GIT = 26
const GLYPH_HOSTSEDITOR = 39
const GLYPH_IMAGEMAGICK = 41
const GLYPH_LIGHT = 25
const GLYPH_NETWORK = 29
const GLYPH_NGROK = 57
const GLYPH_NODEJS = 28
const GLYPH_NOTEPAD2 = 42
const GLYPH_PASSWORD = 45
const GLYPH_PAUSE = 10
const GLYPH_PEAR = 38
const GLYPH_PERL = 55
const GLYPH_PWGEN = 58
const GLYPH_PYTHON = 50
const GLYPH_REBUILD_INI = 60
const GLYPH_RED_LIGHT = 36
const GLYPH_RELOAD = 12
const GLYPH_RESTART = 34
const GLYPH_RUBY = 52
const GLYPH_SERVICE_ALL_RUNNING = 16
const GLYPH_SERVICE_INSTALL = 8
const GLYPH_SERVICE_NONE_RUNNING = 18
const GLYPH_SERVICE_REMOVE = 7
const GLYPH_SERVICE_SOME_RUNNING = 17
const GLYPH_SERVICES_RESTART = 22
const GLYPH_SERVICES_START = 24
const GLYPH_SERVICES_STOP = 23
const GLYPH_SSL_CERTIFICATE = 35
const GLYPH_START = 9
const GLYPH_STOP = 11
const GLYPH_TRASHCAN = 32
const GLYPH_UPDATE = 33
const GLYPH_WARNING = 19
const GLYPH_WEB_PAGE = 30
const GLYPH_XLIGHT = 59
const IMG_BAR_PICTURE = 'bar.dat'
const IMG_GLYPH_SPRITES = 'sprites.dat'
const SERVICE_RESTART = 'restart'
const SERVICE_START = 'startresume'
const SERVICE_STOP = 'stop'
const SERVICES_CLOSE = 'closeservices'

Static Private Member Functions

static getActionService ($service, $action, $item=false)

Detailed Description

Class TplAestan

This class provides various methods to generate configuration strings for the Bearsampp application. It includes methods to create items for ConsoleZ, links, Notepad, executables, and explorer actions. Additionally, it handles service actions such as start, stop, and restart, and generates configuration sections for messages, config, and menu settings.

Constants:

  • Glyph constants for various icons used in the application.
  • Service actions for starting, stopping, and restarting services.
  • Image files used in the application.

Methods:

  • getGlyphFlah($lang): Retrieves the glyph flag for a given language.
  • getItemSeparator(): Returns a string representing a separator item.
  • getItemConsoleZ($caption, $glyph, $id, $title, $initDir, $command): Returns a string representing a ConsoleZ item.
  • getItemLink($caption, $link, $local, $glyph): Returns a string representing a link item.
  • getItemNotepad($caption, $path): Returns a string representing a Notepad item.
  • getItemExe($caption, $exe, $glyph, $params): Returns a string representing an executable item.
  • getItemExplore($caption, $path): Returns a string representing an explorer item.
  • getActionService($service, $action, $item): Returns a string representing a service action.
  • getActionServiceStart($service): Returns a string representing a service start action.
  • getItemActionServiceStart($service): Returns a string representing a service start item.
  • getActionServiceStop($service): Returns a string representing a service stop action.
  • getItemActionServiceStop($service): Returns a string representing a service stop item.
  • getActionServiceRestart($service): Returns a string representing a service restart action.
  • getItemActionServiceRestart($service): Returns a string representing a service restart item.
  • getActionServicesClose(): Returns a string representing a close services action.
  • getItemActionServicesClose(): Returns a string representing a close services item.
  • getSectionMessages(): Returns a string representing the messages section.
  • getSectionConfig(): Returns a string representing the config section.
  • getSectionMenuRightSettings(): Returns a string representing the right menu settings section.
  • getSectionMenuLeftSettings($caption): Returns a string representing the left menu settings section.

Definition at line 46 of file class.tpl.aestan.php.

Member Function Documentation

◆ getActionService()

getActionService ( $service,
$action,
$item = false )
staticprivate

Returns a string representing a service action.

Parameters
string | null$serviceThe service name.
string$actionThe action to perform.
bool$itemWhether to return as an item.
Returns
string The service action string.

Definition at line 254 of file class.tpl.aestan.php.

255 {
256 global $bearsamppLang;
257 $result = 'Action: ' . $action;
258
259 if ($service != null) {
260 $result = 'Action: service; ' .
261 'Service: ' . $service . '; ' .
262 'ServiceAction: ' . $action;
263 }
264
265 if ($item) {
266 $result = 'Type: item; ' . $result;
267 if ($action == self::SERVICE_START) {
268 $result .= '; Caption: "' . $bearsamppLang->getValue(Lang::MENU_START_SERVICE) . '"' .
269 '; Glyph: ' . self::GLYPH_START;
270 } elseif ($action == self::SERVICE_STOP) {
271 $result .= '; Caption: "' . $bearsamppLang->getValue(Lang::MENU_STOP_SERVICE) . '"' .
272 '; Glyph: ' . self::GLYPH_STOP;
273 } elseif ($action == self::SERVICE_RESTART) {
274 $result .= '; Caption: "' . $bearsamppLang->getValue(Lang::MENU_RESTART_SERVICE) . '"' .
275 '; Glyph: ' . self::GLYPH_RELOAD;
276 }
277 } elseif ($action != self::SERVICES_CLOSE) {
278 $result .= '; Flags: ignoreerrors waituntilterminated';
279 }
280
281 return $result;
282 }
$result
global $bearsamppLang
const MENU_STOP_SERVICE
const MENU_RESTART_SERVICE
const MENU_START_SERVICE

References $bearsamppLang, $result, Lang\MENU_RESTART_SERVICE, Lang\MENU_START_SERVICE, and Lang\MENU_STOP_SERVICE.

Referenced by getActionServiceRestart(), getActionServicesClose(), getActionServiceStart(), getActionServiceStop(), getItemActionServiceRestart(), getItemActionServicesClose(), getItemActionServiceStart(), and getItemActionServiceStop().

◆ getActionServiceRestart()

getActionServiceRestart ( $service)
static

Returns a string representing a service restart action.

Parameters
string$serviceThe service name.
Returns
string The service restart action string.

Definition at line 334 of file class.tpl.aestan.php.

335 {
336 return self::getActionService($service, self::SERVICE_RESTART, false);
337 }
static getActionService($service, $action, $item=false)

References getActionService().

◆ getActionServicesClose()

getActionServicesClose ( )
static

Returns a string representing a close services action.

Returns
string The close services action string.

Definition at line 355 of file class.tpl.aestan.php.

356 {
357 return self::getActionService(null, self::SERVICES_CLOSE, false);
358 }

References getActionService().

◆ getActionServiceStart()

getActionServiceStart ( $service)
static

Returns a string representing a service start action.

Parameters
string$serviceThe service name.
Returns
string The service start action string.

Definition at line 290 of file class.tpl.aestan.php.

291 {
292 return self::getActionService($service, self::SERVICE_START, false);
293 }

References getActionService().

◆ getActionServiceStop()

getActionServiceStop ( $service)
static

Returns a string representing a service stop action.

Parameters
string$serviceThe service name.
Returns
string The service stop action string.

Definition at line 312 of file class.tpl.aestan.php.

313 {
314 return self::getActionService($service, self::SERVICE_STOP, false);
315 }

References getActionService().

◆ getGlyphFlah()

getGlyphFlah ( $lang)
static

Retrieves the glyph flag for a given language.

Parameters
string$langThe language code.
Returns
void

Definition at line 116 of file class.tpl.aestan.php.

117 {
118 }

◆ getItemActionServiceRestart()

getItemActionServiceRestart ( $service)
static

Returns a string representing a service restart item.

Parameters
string$serviceThe service name.
Returns
string The service restart item string.

Definition at line 345 of file class.tpl.aestan.php.

346 {
347 return self::getActionService($service, self::SERVICE_RESTART, true);
348 }

References getActionService().

Referenced by TplAppApache\getMenuApacheService(), TplAppMailpit\getMenuMailpitService(), TplAppMariadb\getMenuMariadbService(), TplAppMemcached\getMenuMemcachedService(), TplAppMysql\getMenuMysqlService(), TplAppPostgresql\getMenuPostgresqlService(), and TplAppXlight\getMenuXlightService().

◆ getItemActionServicesClose()

getItemActionServicesClose ( )
static

Returns a string representing a close services item.

Returns
string The close services item string.

Definition at line 365 of file class.tpl.aestan.php.

366 {
367 return self::getActionService(null, self::SERVICES_CLOSE, true);
368 }

References getActionService().

◆ getItemActionServiceStart()

getItemActionServiceStart ( $service)
static

Returns a string representing a service start item.

Parameters
string$serviceThe service name.
Returns
string The service start item string.

Definition at line 301 of file class.tpl.aestan.php.

302 {
303 return self::getActionService($service, self::SERVICE_STOP, true);
304 }

References getActionService().

Referenced by TplAppApache\getMenuApacheService(), TplAppMailpit\getMenuMailpitService(), TplAppMariadb\getMenuMariadbService(), TplAppMemcached\getMenuMemcachedService(), TplAppMysql\getMenuMysqlService(), TplAppPostgresql\getMenuPostgresqlService(), and TplAppXlight\getMenuXlightService().

◆ getItemActionServiceStop()

getItemActionServiceStop ( $service)
static

Returns a string representing a service stop item.

Parameters
string$serviceThe service name.
Returns
string The service stop item string.

Definition at line 323 of file class.tpl.aestan.php.

324 {
325 return self::getActionService($service, self::SERVICE_START, true);
326 }

References getActionService().

Referenced by TplAppApache\getMenuApacheService(), TplAppMailpit\getMenuMailpitService(), TplAppMariadb\getMenuMariadbService(), TplAppMemcached\getMenuMemcachedService(), TplAppMysql\getMenuMysqlService(), TplAppPostgresql\getMenuPostgresqlService(), and TplAppXlight\getMenuXlightService().

◆ getItemConsoleZ()

getItemConsoleZ ( $caption,
$glyph,
$id = null,
$title = null,
$initDir = null,
$command = null )
static

Returns a string representing a ConsoleZ item.

Parameters
string$captionThe caption for the item.
int$glyphThe glyph index.
string | null$idThe ID for the item.
string | null$titleThe title for the item.
string | null$initDirThe initial directory for the item.
string | null$commandThe command to execute.
Returns
string The ConsoleZ item string.

Definition at line 141 of file class.tpl.aestan.php.

142 {
143 global $bearsamppTools;
144
145 $args = '';
146 if ($id != null) {
147 $args .= ' -t ""' . $id . '""';
148 }
149 if ($title != null) {
150 $args .= ' -w ""' . $title . '""';
151 }
152 if ($initDir != null) {
153 $args .= ' -d ""' . $initDir . '""';
154 }
155 if ($command != null) {
156 $args .= ' -r ""' . $command . '""';
157 }
158
159 return self::getItemExe(
160 $caption,
161 $bearsamppTools->getConsoleZ()->getExe(),
162 $glyph,
163 $args
164 );
165 }
static getItemExe($caption, $exe, $glyph, $params=null)

References getItemExe().

Referenced by TplAppGit\getMenuGit(), TplAppGit\getMenuGitRepos(), TplAppMariadb\getMenuMariadb(), TplAppMysql\getMenuMysql(), TplAppNodejs\getMenuNodejs(), TplAppPostgresql\getMenuPostgresql(), TplAppPython\getMenuPython(), and TplAppTools\getMenuTools().

◆ getItemExe()

getItemExe ( $caption,
$exe,
$glyph,
$params = null )
static

Returns a string representing an executable item.

Parameters
string$captionThe caption for the item.
string$exeThe path to the executable.
int$glyphThe glyph index.
string | null$paramsThe parameters for the executable.
Returns
string The executable item string.

Definition at line 220 of file class.tpl.aestan.php.

221 {
222 return 'Type: item; ' .
223 'Caption: "' . $caption . '"; ' .
224 'Action: run; ' .
225 'FileName: "' . $exe . '"; ' .
226 (!empty($params) ? 'Parameters: "' . $params . '"; ' : '') .
227 'Glyph: ' . $glyph;
228 }

Referenced by getItemConsoleZ(), getItemLink(), getItemNotepad(), TplAppGit\getMenuGit(), TplAppMailpit\getMenuMailpit(), TplAppPython\getMenuPython(), and TplAppTools\getMenuTools().

◆ getItemExplore()

getItemExplore ( $caption,
$path )
static

Returns a string representing an explorer item.

Parameters
string$captionThe caption for the item.
string$pathThe path to explore.
Returns
string The explorer item string.

Definition at line 237 of file class.tpl.aestan.php.

238 {
239 return 'Type: item; ' .
240 'Caption: "' . $caption . '"; ' .
241 'Action: shellexecute; ' .
242 'FileName: "' . $path . '"; ' .
243 'Glyph: ' . self::GLYPH_FOLDER_OPEN;
244 }

Referenced by TplApp\getSectionMenuLeft().

◆ getItemLink()

getItemLink ( $caption,
$link,
$local = false,
$glyph = self::GLYPH_WEB_PAGE )
static

Returns a string representing a link item.

Parameters
string$captionThe caption for the item.
string$linkThe URL for the link.
bool$localWhether the link is local.
int$glyphThe glyph index.
Returns
string The link item string.

Definition at line 176 of file class.tpl.aestan.php.

177 {
179
180 if ($local) {
181 $link = $bearsamppRoot->getLocalUrl($link);
182 }
183
184 return self::getItemExe(
185 $caption,
186 $bearsamppConfig->getBrowser(),
187 $glyph,
188 $link
189 );
190 }
global $bearsamppRoot
global $bearsamppConfig
Definition homepage.php:27

References $bearsamppConfig, $bearsamppRoot, and getItemExe().

Referenced by TplAppApache\getMenuApache(), TplAppApps\getMenuApps(), TplAppMailpit\getMenuMailpit(), TplAppMariadb\getMenuMariadb(), TplAppMemcached\getMenuMemcached(), TplAppMysql\getMenuMysql(), TplAppNodejs\getMenuNodejs(), TplAppPhp\getMenuPhp(), TplAppPostgresql\getMenuPostgresql(), TplAppXlight\getMenuXlight(), TplApp\getSectionMenuLeft(), and TplApp\getSectionMenuRight().

◆ getItemNotepad()

getItemNotepad ( $caption,
$path )
static

Returns a string representing a Notepad item.

Parameters
string$captionThe caption for the item.
string$pathThe path to the file.
Returns
string The Notepad item string.

Definition at line 199 of file class.tpl.aestan.php.

200 {
201 global $bearsamppConfig;
202
203 return self::getItemExe(
204 $caption,
205 $bearsamppConfig->getNotepad(),
206 self::GLYPH_FILE,
207 $path
208 );
209 }

References $bearsamppConfig, and getItemExe().

Referenced by TplAppApache\getMenuApache(), TplAppApache\getMenuApacheService(), TplAppLogs\getMenuLogs(), TplAppMailpit\getMenuMailpit(), TplAppMailpit\getMenuMailpitService(), TplAppMariadb\getMenuMariadb(), TplAppMemcached\getMenuMemcached(), TplAppMysql\getMenuMysql(), TplAppNodejs\getMenuNodejs(), TplAppPhp\getMenuPhp(), TplAppPostgresql\getMenuPostgresql(), TplAppXlight\getMenuXlight(), TplAppXlight\getMenuXlightService(), and TplAppEditConf\process().

◆ getItemSeparator()

◆ getSectionConfig()

getSectionConfig ( )
static

Returns a string representing the config section.

Returns
string The config section string.

Definition at line 390 of file class.tpl.aestan.php.

391 {
392 global $bearsamppCore;
393 return '[Config]' . PHP_EOL .
394 'ImageList=' . self::IMG_GLYPH_SPRITES . PHP_EOL .
395 'ServiceCheckInterval=1' . PHP_EOL .
396 'TrayIconAllRunning=' . self::GLYPH_SERVICE_ALL_RUNNING . PHP_EOL .
397 'TrayIconSomeRunning=' . self::GLYPH_SERVICE_SOME_RUNNING . PHP_EOL .
398 'TrayIconNoneRunning=' . self::GLYPH_SERVICE_NONE_RUNNING . PHP_EOL .
399 'ID={' . strtolower(APP_TITLE) . '}' . PHP_EOL .
400 'AboutHeader=' . APP_TITLE . PHP_EOL .
401 'AboutVersion=Version ' . $bearsamppCore->getAppVersion() . PHP_EOL;
402 }
global $bearsamppCore
const APP_TITLE
Definition root.php:13

References $bearsamppCore, and APP_TITLE.

Referenced by TplApp\process(), and TplApp\processLight().

◆ getSectionMenuLeftSettings()

getSectionMenuLeftSettings ( $caption)
static

Returns a string representing the left menu settings section.

Parameters
string$captionThe caption for the left menu.
Returns
string The left menu settings section string.

Definition at line 429 of file class.tpl.aestan.php.

430 {
431 return '[Menu.Left.Settings]' . PHP_EOL .
432 'AutoLineReduction=no' . PHP_EOL .
433 'BarVisible=yes' . PHP_EOL .
434 'BarCaptionAlignment=bottom' . PHP_EOL .
435 'BarCaptionCaption=' . $caption . PHP_EOL .
436 'BarCaptionDepth=1' . PHP_EOL .
437 'BarCaptionDirection=downtoup' . PHP_EOL .
438 'BarCaptionFont=Tahoma,14,clWhite' . PHP_EOL .
439 'BarCaptionHighlightColor=clNone' . PHP_EOL .
440 'BarCaptionOffsetY=0' . PHP_EOL .
441 'BarCaptionShadowColor=clNone' . PHP_EOL .
442 'BarPictureHorzAlignment=center' . PHP_EOL .
443 'BarPictureOffsetX=0' . PHP_EOL .
444 'BarPictureOffsetY=0' . PHP_EOL .
445 'BarPicturePicture=' . self::IMG_BAR_PICTURE . PHP_EOL .
446 'BarPictureTransparent=yes' . PHP_EOL .
447 'BarPictureVertAlignment=bottom' . PHP_EOL .
448 'BarBorder=clNone' . PHP_EOL .
449 'BarGradientEnd=$00c07840' . PHP_EOL .
450 'BarGradientStart=$00c07840' . PHP_EOL .
451 'BarGradientStyle=horizontal' . PHP_EOL .
452 'BarSide=left' . PHP_EOL .
453 'BarSpace=0' . PHP_EOL .
454 'BarWidth=32' . PHP_EOL .
455 'SeparatorsAlignment=center' . PHP_EOL .
456 'SeparatorsFade=yes' . PHP_EOL .
457 'SeparatorsFadeColor=clBtnShadow' . PHP_EOL .
458 'SeparatorsFlatLines=yes' . PHP_EOL .
459 'SeparatorsFont=Arial,8,clWhite,bold' . PHP_EOL .
460 'SeparatorsGradientEnd=$00FFAA55' . PHP_EOL .
461 'SeparatorsGradientStart=$00550000' . PHP_EOL .
462 'SeparatorsGradientStyle=horizontal' . PHP_EOL .
463 'SeparatorsSeparatorStyle=caption' . PHP_EOL;
464 }

Referenced by TplApp\process().

◆ getSectionMenuRightSettings()

getSectionMenuRightSettings ( )
static

Returns a string representing the right menu settings section.

Returns
string The right menu settings section string.

Definition at line 409 of file class.tpl.aestan.php.

410 {
411 return '[Menu.Right.Settings]' . PHP_EOL .
412 'BarVisible=no' . PHP_EOL .
413 'SeparatorsAlignment=center' . PHP_EOL .
414 'SeparatorsFade=yes' . PHP_EOL .
415 'SeparatorsFadeColor=clBtnShadow' . PHP_EOL .
416 'SeparatorsFlatLines=yes' . PHP_EOL .
417 'SeparatorsGradientEnd=clSilver' . PHP_EOL .
418 'SeparatorsGradientStart=clGray' . PHP_EOL .
419 'SeparatorsGradientStyle=horizontal' . PHP_EOL .
420 'SeparatorsSeparatorStyle=shortline' . PHP_EOL;
421 }

Referenced by TplApp\process().

◆ getSectionMessages()

getSectionMessages ( )
static

Returns a string representing the messages section.

Returns
string The messages section string.

Definition at line 375 of file class.tpl.aestan.php.

376 {
377 global $bearsamppLang;
378
379 return '[Messages]' . PHP_EOL .
380 'AllRunningHint=' . $bearsamppLang->getValue(Lang::ALL_RUNNING_HINT) . PHP_EOL .
381 'SomeRunningHint=' . $bearsamppLang->getValue(Lang::SOME_RUNNING_HINT) . PHP_EOL .
382 'NoneRunningHint=' . $bearsamppLang->getValue(Lang::NONE_RUNNING_HINT) . PHP_EOL;
383 }
const NONE_RUNNING_HINT
const ALL_RUNNING_HINT
const SOME_RUNNING_HINT

References $bearsamppLang, Lang\ALL_RUNNING_HINT, Lang\NONE_RUNNING_HINT, and Lang\SOME_RUNNING_HINT.

Referenced by TplApp\process(), and TplApp\processLight().

Field Documentation

◆ GLYPH_ABOUT

const GLYPH_ABOUT = 21

Definition at line 67 of file class.tpl.aestan.php.

Referenced by TplApp\getSectionMenuRight().

◆ GLYPH_ADD

const GLYPH_ADD = 1

◆ GLYPH_BROWSER

◆ GLYPH_BRUNO

const GLYPH_BRUNO = 61

Definition at line 98 of file class.tpl.aestan.php.

Referenced by TplAppTools\getMenuTools().

◆ GLYPH_CHECK

◆ GLYPH_COMPOSER

const GLYPH_COMPOSER = 37

Definition at line 82 of file class.tpl.aestan.php.

Referenced by TplAppTools\getMenuTools().

◆ GLYPH_CONSOLEZ

◆ GLYPH_DEBUG

◆ GLYPH_EXIT

const GLYPH_EXIT = 20

Definition at line 66 of file class.tpl.aestan.php.

Referenced by TplAppExit\process().

◆ GLYPH_FILE

const GLYPH_FILE = 6

◆ GLYPH_FOLDER_CLOSE

const GLYPH_FOLDER_CLOSE = 3

◆ GLYPH_FOLDER_DISABLED

const GLYPH_FOLDER_DISABLED = 48

Definition at line 88 of file class.tpl.aestan.php.

Referenced by TplApp\getMenuEnable().

◆ GLYPH_FOLDER_ENABLED

const GLYPH_FOLDER_ENABLED = 49

Definition at line 89 of file class.tpl.aestan.php.

◆ GLYPH_FOLDER_OPEN

const GLYPH_FOLDER_OPEN = 2

Definition at line 51 of file class.tpl.aestan.php.

◆ GLYPH_GHOSTSCRIPT

const GLYPH_GHOSTSCRIPT = 56

Definition at line 93 of file class.tpl.aestan.php.

Referenced by TplAppTools\getMenuTools().

◆ GLYPH_GIT

const GLYPH_GIT = 26

Definition at line 72 of file class.tpl.aestan.php.

Referenced by TplAppGit\getMenuGit(), and TplAppGit\getMenuGitRepos().

◆ GLYPH_HOSTSEDITOR

const GLYPH_HOSTSEDITOR = 39

Definition at line 84 of file class.tpl.aestan.php.

Referenced by TplAppTools\getMenuTools().

◆ GLYPH_IMAGEMAGICK

const GLYPH_IMAGEMAGICK = 41

Definition at line 85 of file class.tpl.aestan.php.

◆ GLYPH_LIGHT

◆ GLYPH_NETWORK

◆ GLYPH_NGROK

const GLYPH_NGROK = 57

Definition at line 94 of file class.tpl.aestan.php.

Referenced by TplAppTools\getMenuTools().

◆ GLYPH_NODEJS

const GLYPH_NODEJS = 28

Definition at line 73 of file class.tpl.aestan.php.

◆ GLYPH_NOTEPAD2

const GLYPH_NOTEPAD2 = 42

Definition at line 86 of file class.tpl.aestan.php.

◆ GLYPH_PASSWORD

◆ GLYPH_PAUSE

const GLYPH_PAUSE = 10

Definition at line 58 of file class.tpl.aestan.php.

◆ GLYPH_PEAR

const GLYPH_PEAR = 38

Definition at line 83 of file class.tpl.aestan.php.

Referenced by TplAppTools\getMenuTools().

◆ GLYPH_PERL

const GLYPH_PERL = 55

Definition at line 92 of file class.tpl.aestan.php.

Referenced by TplAppTools\getMenuTools().

◆ GLYPH_PWGEN

const GLYPH_PWGEN = 58

Definition at line 95 of file class.tpl.aestan.php.

Referenced by TplAppTools\getMenuTools().

◆ GLYPH_PYTHON

const GLYPH_PYTHON = 50

Definition at line 90 of file class.tpl.aestan.php.

Referenced by TplAppPython\getMenuPython().

◆ GLYPH_REBUILD_INI

const GLYPH_REBUILD_INI = 60

Definition at line 97 of file class.tpl.aestan.php.

Referenced by TplAppRebuildIni\process().

◆ GLYPH_RED_LIGHT

const GLYPH_RED_LIGHT = 36

Definition at line 81 of file class.tpl.aestan.php.

Referenced by TplAppApache\getMenuApacheService().

◆ GLYPH_RELOAD

const GLYPH_RELOAD = 12

◆ GLYPH_RESTART

const GLYPH_RESTART = 34

Definition at line 79 of file class.tpl.aestan.php.

◆ GLYPH_RUBY

const GLYPH_RUBY = 52

Definition at line 91 of file class.tpl.aestan.php.

Referenced by TplAppTools\getMenuTools().

◆ GLYPH_SERVICE_ALL_RUNNING

const GLYPH_SERVICE_ALL_RUNNING = 16

Definition at line 62 of file class.tpl.aestan.php.

◆ GLYPH_SERVICE_INSTALL

◆ GLYPH_SERVICE_NONE_RUNNING

const GLYPH_SERVICE_NONE_RUNNING = 18

Definition at line 64 of file class.tpl.aestan.php.

◆ GLYPH_SERVICE_REMOVE

◆ GLYPH_SERVICE_SOME_RUNNING

const GLYPH_SERVICE_SOME_RUNNING = 17

Definition at line 63 of file class.tpl.aestan.php.

◆ GLYPH_SERVICES_RESTART

const GLYPH_SERVICES_RESTART = 22

Definition at line 68 of file class.tpl.aestan.php.

Referenced by TplAppServices\process().

◆ GLYPH_SERVICES_START

const GLYPH_SERVICES_START = 24

Definition at line 70 of file class.tpl.aestan.php.

Referenced by TplAppServices\process().

◆ GLYPH_SERVICES_STOP

const GLYPH_SERVICES_STOP = 23

Definition at line 69 of file class.tpl.aestan.php.

Referenced by TplAppServices\process().

◆ GLYPH_SSL_CERTIFICATE

const GLYPH_SSL_CERTIFICATE = 35

Definition at line 80 of file class.tpl.aestan.php.

Referenced by TplAppTools\getMenuTools().

◆ GLYPH_START

const GLYPH_START = 9

Definition at line 57 of file class.tpl.aestan.php.

Referenced by TplService\getItemStart().

◆ GLYPH_STOP

const GLYPH_STOP = 11

Definition at line 59 of file class.tpl.aestan.php.

Referenced by TplService\getItemStop().

◆ GLYPH_TRASHCAN

const GLYPH_TRASHCAN = 32

Definition at line 77 of file class.tpl.aestan.php.

Referenced by TplAppClearFolders\process().

◆ GLYPH_UPDATE

const GLYPH_UPDATE = 33

Definition at line 78 of file class.tpl.aestan.php.

Referenced by TplApp\getSectionMenuRight().

◆ GLYPH_WARNING

◆ GLYPH_WEB_PAGE

const GLYPH_WEB_PAGE = 30

Definition at line 75 of file class.tpl.aestan.php.

Referenced by TplAppMailpit\getMenuMailpit().

◆ GLYPH_XLIGHT

const GLYPH_XLIGHT = 59

Definition at line 96 of file class.tpl.aestan.php.

◆ IMG_BAR_PICTURE

const IMG_BAR_PICTURE = 'bar.dat'

Definition at line 107 of file class.tpl.aestan.php.

◆ IMG_GLYPH_SPRITES

const IMG_GLYPH_SPRITES = 'sprites.dat'

Definition at line 108 of file class.tpl.aestan.php.

◆ SERVICE_RESTART

const SERVICE_RESTART = 'restart'

Definition at line 103 of file class.tpl.aestan.php.

◆ SERVICE_START

const SERVICE_START = 'startresume'

Definition at line 101 of file class.tpl.aestan.php.

◆ SERVICE_STOP

const SERVICE_STOP = 'stop'

Definition at line 102 of file class.tpl.aestan.php.

◆ SERVICES_CLOSE

const SERVICES_CLOSE = 'closeservices'

Definition at line 104 of file class.tpl.aestan.php.


The documentation for this class was generated from the following file: