|
Last change
on this file was 887, checked in by chronos, 5 years ago |
- Added: Static types added to almost all classes, methods and function. Supported by PHP 7.4.
- Fixed: Various found code issues.
|
|
File size:
212 bytes
|
| Line | |
|---|
| 1 | <?php
|
|---|
| 2 |
|
|---|
| 3 | class TypeImage extends TypeString
|
|---|
| 4 | {
|
|---|
| 5 | function OnView(array $Item): ?string
|
|---|
| 6 | {
|
|---|
| 7 | global $System;
|
|---|
| 8 |
|
|---|
| 9 | return '<img src="'.$System->Link('/images/favicons/'.$Item['Value']).'"/> '.$Item['Value'];
|
|---|
| 10 | }
|
|---|
| 11 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.