Bearsampp 2026.3.26
API documentation
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 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 getItemPowerShell ($caption, $glyph, $id=null, $title=null, $initDir=null, $command=null)
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_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_POWERSHELL = 0
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 PowerShell, 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.
  • getItemPowerShell($caption, $glyph, $id, $title, $initDir, $command): Returns a string representing a PowerShell 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 266 of file class.tpl.aestan.php.

267 {
268 global $bearsamppLang;
269 $result = 'Action: ' . $action;
270
271 if ($service != null) {
272 $result = 'Action: service; ' .
273 'Service: ' . $service . '; ' .
274 'ServiceAction: ' . $action;
275 }
276
277 if ($item) {
278 $result = 'Type: item; ' . $result;
279 if ($action == self::SERVICE_START) {
280 $result .= '; Caption: "' . $bearsamppLang->getValue(Lang::MENU_START_SERVICE) . '"' .
281 '; Glyph: ' . self::GLYPH_START;
282 } elseif ($action == self::SERVICE_STOP) {
283 $result .= '; Caption: "' . $bearsamppLang->getValue(Lang::MENU_STOP_SERVICE) . '"' .
284 '; Glyph: ' . self::GLYPH_STOP;
285 } elseif ($action == self::SERVICE_RESTART) {
286 $result .= '; Caption: "' . $bearsamppLang->getValue(Lang::MENU_RESTART_SERVICE) . '"' .
287 '; Glyph: ' . self::GLYPH_RELOAD;
288 }
289 } elseif ($action != self::SERVICES_CLOSE) {
290 $result .= '; Flags: ignoreerrors waituntilterminated';
291 }
292
293 return $result;
294 }
$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 346 of file class.tpl.aestan.php.

347 {
348 return self::getActionService($service, self::SERVICE_RESTART, false);
349 }
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 367 of file class.tpl.aestan.php.

368 {
369 return self::getActionService(null, self::SERVICES_CLOSE, false);
370 }

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 302 of file class.tpl.aestan.php.

303 {
304 return self::getActionService($service, self::SERVICE_START, false);
305 }

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 324 of file class.tpl.aestan.php.

325 {
326 return self::getActionService($service, self::SERVICE_STOP, false);
327 }

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 357 of file class.tpl.aestan.php.

358 {
359 return self::getActionService($service, self::SERVICE_RESTART, true);
360 }

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 377 of file class.tpl.aestan.php.

378 {
379 return self::getActionService(null, self::SERVICES_CLOSE, true);
380 }

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 313 of file class.tpl.aestan.php.

314 {
315 return self::getActionService($service, self::SERVICE_STOP, true);
316 }

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 335 of file class.tpl.aestan.php.

336 {
337 return self::getActionService($service, self::SERVICE_START, true);
338 }

References getActionService().

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

◆ 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 232 of file class.tpl.aestan.php.

233 {
234 return 'Type: item; ' .
235 'Caption: "' . $caption . '"; ' .
236 'Action: run; ' .
237 'FileName: "' . $exe . '"; ' .
238 (!empty($params) ? 'Parameters: "' . $params . '"; ' : '') .
239 'Glyph: ' . $glyph;
240 }

Referenced by getItemLink(), getItemNotepad(), getItemPowerShell(), 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 249 of file class.tpl.aestan.php.

250 {
251 return 'Type: item; ' .
252 'Caption: "' . $caption . '"; ' .
253 'Action: shellexecute; ' .
254 'FileName: "' . $path . '"; ' .
255 'Glyph: ' . self::GLYPH_FOLDER_OPEN;
256 }

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 188 of file class.tpl.aestan.php.

189 {
191
192 if ($local) {
193 $link = $bearsamppRoot->getLocalUrl($link);
194 }
195
196 return self::getItemExe(
197 $caption,
198 $bearsamppConfig->getBrowser(),
199 $glyph,
200 $link
201 );
202 }
global $bearsamppRoot
static getItemExe($caption, $exe, $glyph, $params=null)
global $bearsamppConfig
Definition homepage.php:41

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 211 of file class.tpl.aestan.php.

212 {
213 global $bearsamppConfig;
214
215 return self::getItemExe(
216 $caption,
217 $bearsamppConfig->getNotepad(),
218 self::GLYPH_FILE,
219 $path
220 );
221 }

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().

◆ getItemPowerShell()

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

Returns a string representing a PowerShell item.

Parameters
string$captionThe caption for the item.
int$glyphThe glyph index.
string | null$idThe ID for the item (not used with PowerShell).
string | null$titleThe title for the tab.
string | null$initDirThe initial directory for the item.
string | null$commandThe command to execute.
Returns
string The PowerShell item string.

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

142 {
143 global $bearsamppTools;
144
145 // PowerShell uses the launch batch file which handles the command execution
146 // We use Windows Terminal command-line arguments:
147 // --title or -w for window title
148 // --startingDirectory or -d for starting directory
149 $launchExe = $bearsamppTools->getPowerShell()->getLaunchExe();
150
151 // Build the parameters using Windows Terminal switches
152 $params = '';
153
154 // Add title if provided (using -w for compatibility)
155 if ($title != null) {
156 $params .= '--title ""' . $title . '""';
157 }
158
159 // Add starting directory if provided (using -d for compatibility)
160 if ($initDir != null) {
161 if (!empty($params)) $params .= ' ';
162 $params .= '--startingDirectory ""' . $initDir . '""';
163 }
164
165 // Add command to execute if provided
166 if ($command != null) {
167 if (!empty($params)) $params .= ' ';
168 $params .= '--command ""' . $command . '""';
169 }
170
171 return self::getItemExe(
172 $caption,
173 $launchExe,
174 $glyph,
175 $params
176 );
177 }

References getItemExe().

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

◆ getItemSeparator()

◆ getSectionConfig()

getSectionConfig ( )
static

Returns a string representing the config section.

Returns
string The config section string.

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

403 {
404 global $bearsamppCore;
405 return '[Config]' . PHP_EOL .
406 'ImageList=' . self::IMG_GLYPH_SPRITES . PHP_EOL .
407 'ServiceCheckInterval=1' . PHP_EOL .
408 'TrayIconAllRunning=' . self::GLYPH_SERVICE_ALL_RUNNING . PHP_EOL .
409 'TrayIconSomeRunning=' . self::GLYPH_SERVICE_SOME_RUNNING . PHP_EOL .
410 'TrayIconNoneRunning=' . self::GLYPH_SERVICE_NONE_RUNNING . PHP_EOL .
411 'ID={' . strtolower(APP_TITLE) . '}' . PHP_EOL .
412 'AboutHeader=' . APP_TITLE . PHP_EOL .
413 'AboutVersion=Version ' . $bearsamppCore->getAppVersion() . PHP_EOL;
414 }
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 441 of file class.tpl.aestan.php.

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

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 421 of file class.tpl.aestan.php.

422 {
423 return '[Menu.Right.Settings]' . PHP_EOL .
424 'BarVisible=no' . PHP_EOL .
425 'SeparatorsAlignment=center' . PHP_EOL .
426 'SeparatorsFade=yes' . PHP_EOL .
427 'SeparatorsFadeColor=clBtnShadow' . PHP_EOL .
428 'SeparatorsFlatLines=yes' . PHP_EOL .
429 'SeparatorsGradientEnd=clSilver' . PHP_EOL .
430 'SeparatorsGradientStart=clGray' . PHP_EOL .
431 'SeparatorsGradientStyle=horizontal' . PHP_EOL .
432 'SeparatorsSeparatorStyle=shortline' . PHP_EOL;
433 }

Referenced by TplApp\process().

◆ getSectionMessages()

getSectionMessages ( )
static

Returns a string representing the messages section.

Returns
string The messages section string.

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

388 {
389 global $bearsamppLang;
390
391 return '[Messages]' . PHP_EOL .
392 'AllRunningHint=' . $bearsamppLang->getValue(Lang::ALL_RUNNING_HINT) . PHP_EOL .
393 'SomeRunningHint=' . $bearsamppLang->getValue(Lang::SOME_RUNNING_HINT) . PHP_EOL .
394 'NoneRunningHint=' . $bearsamppLang->getValue(Lang::NONE_RUNNING_HINT) . PHP_EOL;
395 }
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_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.

Referenced by TplAppNodejs\getMenuNodejs().

◆ 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_POWERSHELL

◆ 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: