✏️ 正在编辑: FS_Icons.inc.php
路径:
/home/eblama1/sms.karnplayinland.com/modules/Food_Service/includes/FS_Icons.inc.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php /** * Food Service icons functions */ if ( ! isset( $FS_IconsPath ) ) { // Food Service Icons Path // You can override the Path definition in the config.inc.php file. $FS_IconsPath = 'assets/FS_icons/'; } /** * Food Service icons * * Used in MenuItems.php, ServeMenus.php & Kiosk.php * * @since 6.0 Add TipMessage to Food Service Icon. * * @param $value * @param $name * @param $width * * @return string HTML image with icon. */ function makeIcon( $value, $name, $width = '48' ) { global $FS_IconsPath, $THIS_RET; if ( $value ) { $return = '<img src="' . URLEscape( $FS_IconsPath . $value ) . '" width="' . AttrEscape( $width ) . '" />'; if ( $THIS_RET ) { // Call from DBGet() for ListOutput. // Add TipMessage. require_once 'ProgramFunctions/TipMessage.fnc.php'; return MakeTipMessage( '<img src="' . URLEscape( $FS_IconsPath . $value ) . '" width="128" />', _( 'Icon' ), $return ); } return $return; } return ' '; }
💾 保存文件
← 返回文件管理器