2024.8.23
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_CHECK = 13
 
const GLYPH_COMPOSER = 37
 
const GLYPH_CONSOLEZ = 0
 
const GLYPH_DEBUG = 31
 
const GLYPH_EXIT = 20
 
const GLYPH_FILE = 6
 
const GLYPH_FILEZILLA = 47
 
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_PYTHON_CP = 51
 
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 GLYPH_YARN = 54
 
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 45 of file class.tpl.aestan.php.

Member Function Documentation

◆ getActionService()

static TplAestan::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 255 of file class.tpl.aestan.php.

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

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

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

+ Here is the caller graph for this function:

◆ getActionServiceRestart()

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

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

References getActionService().

◆ getActionServicesClose()

static TplAestan::getActionServicesClose ( )
static

Returns a string representing a close services action.

Returns
string The close services action string.

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

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

References getActionService().

◆ getActionServiceStart()

static TplAestan::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 291 of file class.tpl.aestan.php.

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

References getActionService().

◆ getActionServiceStop()

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

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

References getActionService().

◆ getGlyphFlah()

static TplAestan::getGlyphFlah ( $lang)
static

Retrieves the glyph flag for a given language.

Parameters
string$langThe language code.
Returns
void

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

118 {
119 }

◆ getItemActionServiceRestart()

static TplAestan::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 346 of file class.tpl.aestan.php.

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

References getActionService().

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

+ Here is the caller graph for this function:

◆ getItemActionServicesClose()

static TplAestan::getItemActionServicesClose ( )
static

Returns a string representing a close services item.

Returns
string The close services item string.

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

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

References getActionService().

◆ getItemActionServiceStart()

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

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

References getActionService().

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

+ Here is the caller graph for this function:

◆ getItemActionServiceStop()

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

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

References getActionService().

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

+ Here is the caller graph for this function:

◆ getItemConsoleZ()

static TplAestan::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 142 of file class.tpl.aestan.php.

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

+ Here is the caller graph for this function:

◆ getItemExe()

static TplAestan::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 221 of file class.tpl.aestan.php.

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

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

+ Here is the caller graph for this function:

◆ getItemExplore()

static TplAestan::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 238 of file class.tpl.aestan.php.

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

References GLYPH_FOLDER_OPEN.

Referenced by TplApp\getSectionMenuLeft().

+ Here is the caller graph for this function:

◆ getItemLink()

static TplAestan::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 177 of file class.tpl.aestan.php.

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

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

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

+ Here is the caller graph for this function:

◆ getItemNotepad()

static TplAestan::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 200 of file class.tpl.aestan.php.

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

References $bearsamppConfig, and getItemExe().

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

+ Here is the caller graph for this function:

◆ getItemSeparator()

◆ getSectionConfig()

static TplAestan::getSectionConfig ( )
static

Returns a string representing the config section.

Returns
string The config section string.

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

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

References $bearsamppCore, and APP_TITLE.

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

+ Here is the caller graph for this function:

◆ getSectionMenuLeftSettings()

static TplAestan::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 430 of file class.tpl.aestan.php.

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

Referenced by TplApp\process().

+ Here is the caller graph for this function:

◆ getSectionMenuRightSettings()

static TplAestan::getSectionMenuRightSettings ( )
static

Returns a string representing the right menu settings section.

Returns
string The right menu settings section string.

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

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

Referenced by TplApp\process().

+ Here is the caller graph for this function:

◆ getSectionMessages()

static TplAestan::getSectionMessages ( )
static

Returns a string representing the messages section.

Returns
string The messages section string.

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

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

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

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

+ Here is the caller graph for this function:

Field Documentation

◆ GLYPH_ABOUT

const TplAestan::GLYPH_ABOUT = 21

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

Referenced by TplApp\getSectionMenuRight().

◆ GLYPH_ADD

const TplAestan::GLYPH_ADD = 1

◆ GLYPH_BROWSER

◆ GLYPH_CHECK

◆ GLYPH_COMPOSER

const TplAestan::GLYPH_COMPOSER = 37

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

Referenced by TplAppTools\getMenuTools().

◆ GLYPH_CONSOLEZ

◆ GLYPH_DEBUG

◆ GLYPH_EXIT

const TplAestan::GLYPH_EXIT = 20

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

Referenced by TplAppExit\process().

◆ GLYPH_FILE

const TplAestan::GLYPH_FILE = 6

◆ GLYPH_FILEZILLA

const TplAestan::GLYPH_FILEZILLA = 47

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

Referenced by TplAppFilezilla\getMenuFilezilla().

◆ GLYPH_FOLDER_CLOSE

const TplAestan::GLYPH_FOLDER_CLOSE = 3

◆ GLYPH_FOLDER_DISABLED

const TplAestan::GLYPH_FOLDER_DISABLED = 48

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

Referenced by TplApp\getMenuEnable().

◆ GLYPH_FOLDER_ENABLED

const TplAestan::GLYPH_FOLDER_ENABLED = 49

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

◆ GLYPH_FOLDER_OPEN

const TplAestan::GLYPH_FOLDER_OPEN = 2

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

Referenced by getItemExplore().

◆ GLYPH_GHOSTSCRIPT

const TplAestan::GLYPH_GHOSTSCRIPT = 56

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

Referenced by TplAppTools\getMenuTools().

◆ GLYPH_GIT

const TplAestan::GLYPH_GIT = 26

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

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

◆ GLYPH_HOSTSEDITOR

const TplAestan::GLYPH_HOSTSEDITOR = 39

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

Referenced by TplAppTools\getMenuTools().

◆ GLYPH_IMAGEMAGICK

const TplAestan::GLYPH_IMAGEMAGICK = 41

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

◆ GLYPH_LIGHT

◆ GLYPH_NETWORK

◆ GLYPH_NGROK

const TplAestan::GLYPH_NGROK = 57

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

Referenced by TplAppTools\getMenuTools().

◆ GLYPH_NODEJS

const TplAestan::GLYPH_NODEJS = 28

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

◆ GLYPH_NOTEPAD2

const TplAestan::GLYPH_NOTEPAD2 = 42

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

◆ GLYPH_PASSWORD

const TplAestan::GLYPH_PASSWORD = 45

◆ GLYPH_PAUSE

const TplAestan::GLYPH_PAUSE = 10

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

◆ GLYPH_PEAR

const TplAestan::GLYPH_PEAR = 38

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

Referenced by TplAppTools\getMenuTools().

◆ GLYPH_PERL

const TplAestan::GLYPH_PERL = 55

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

Referenced by TplAppTools\getMenuTools().

◆ GLYPH_PWGEN

const TplAestan::GLYPH_PWGEN = 58

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

Referenced by TplAppTools\getMenuTools().

◆ GLYPH_PYTHON

const TplAestan::GLYPH_PYTHON = 50

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

Referenced by TplAppPython\getMenuPython().

◆ GLYPH_PYTHON_CP

const TplAestan::GLYPH_PYTHON_CP = 51

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

Referenced by TplAppPython\getMenuPython().

◆ GLYPH_REBUILD_INI

const TplAestan::GLYPH_REBUILD_INI = 60

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

Referenced by TplAppRebuildIni\process().

◆ GLYPH_RED_LIGHT

const TplAestan::GLYPH_RED_LIGHT = 36

◆ GLYPH_RELOAD

const TplAestan::GLYPH_RELOAD = 12

◆ GLYPH_RESTART

const TplAestan::GLYPH_RESTART = 34

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

◆ GLYPH_RUBY

const TplAestan::GLYPH_RUBY = 52

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

Referenced by TplAppTools\getMenuTools().

◆ GLYPH_SERVICE_ALL_RUNNING

const TplAestan::GLYPH_SERVICE_ALL_RUNNING = 16

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

◆ GLYPH_SERVICE_INSTALL

◆ GLYPH_SERVICE_NONE_RUNNING

const TplAestan::GLYPH_SERVICE_NONE_RUNNING = 18

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

◆ GLYPH_SERVICE_REMOVE

◆ GLYPH_SERVICE_SOME_RUNNING

const TplAestan::GLYPH_SERVICE_SOME_RUNNING = 17

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

◆ GLYPH_SERVICES_RESTART

const TplAestan::GLYPH_SERVICES_RESTART = 22

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

Referenced by TplAppServices\process().

◆ GLYPH_SERVICES_START

const TplAestan::GLYPH_SERVICES_START = 24

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

Referenced by TplAppServices\process().

◆ GLYPH_SERVICES_STOP

const TplAestan::GLYPH_SERVICES_STOP = 23

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

Referenced by TplAppServices\process().

◆ GLYPH_SSL_CERTIFICATE

const TplAestan::GLYPH_SSL_CERTIFICATE = 35

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

Referenced by TplAppTools\getMenuTools().

◆ GLYPH_START

const TplAestan::GLYPH_START = 9

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

Referenced by getActionService(), and TplService\getItemStart().

◆ GLYPH_STOP

const TplAestan::GLYPH_STOP = 11

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

Referenced by getActionService(), and TplService\getItemStop().

◆ GLYPH_TRASHCAN

const TplAestan::GLYPH_TRASHCAN = 32

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

Referenced by TplAppClearFolders\process().

◆ GLYPH_UPDATE

const TplAestan::GLYPH_UPDATE = 33

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

Referenced by TplApp\getSectionMenuRight().

◆ GLYPH_WARNING

◆ GLYPH_WEB_PAGE

const TplAestan::GLYPH_WEB_PAGE = 30

◆ GLYPH_XLIGHT

const TplAestan::GLYPH_XLIGHT = 59

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

◆ GLYPH_YARN

const TplAestan::GLYPH_YARN = 54

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

Referenced by TplAppTools\getMenuTools().

◆ IMG_BAR_PICTURE

const TplAestan::IMG_BAR_PICTURE = 'bar.dat'

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

◆ IMG_GLYPH_SPRITES

const TplAestan::IMG_GLYPH_SPRITES = 'sprites.dat'

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

◆ SERVICE_RESTART

const TplAestan::SERVICE_RESTART = 'restart'

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

◆ SERVICE_START

const TplAestan::SERVICE_START = 'startresume'

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

◆ SERVICE_STOP

const TplAestan::SERVICE_STOP = 'stop'

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

◆ SERVICES_CLOSE

const TplAestan::SERVICES_CLOSE = 'closeservices'

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


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