| 1 | <?php |
||
| 7 | abstract class Informer { |
||
| 8 | |||
| 9 | # Count table entries |
||
| 10 | |||
| 11 | private static function countEntries(string $table_name, bool $false_on_error = false) { |
||
| 22 | |||
| 23 | # Check if install file exists |
||
| 24 | |||
| 25 | public static function checkInstallFile() { |
||
| 29 | |||
| 30 | # Check if debug mode forced |
||
| 31 | |||
| 32 | public static function isDebugMode() { |
||
| 36 | |||
| 37 | # Check if demo mode forced |
||
| 38 | |||
| 39 | public static function isDemoMode() { |
||
| 43 | |||
| 44 | # Get MySQL version |
||
| 45 | |||
| 46 | public static function mysqlVersion() { |
||
| 52 | |||
| 53 | # Get pages count |
||
| 54 | |||
| 55 | public static function countPages(bool $false_on_error = false) { |
||
| 59 | |||
| 60 | # Get users count |
||
| 61 | |||
| 62 | public static function countUsers(bool $false_on_error = false) { |
||
| 66 | } |
||
| 67 | } |
||
| 68 |