-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.php
More file actions
23 lines (18 loc) · 753 Bytes
/
install.php
File metadata and controls
23 lines (18 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
SQLExec('
CREATE TABLE IF NOT EXISTS `sys_date_format` (
`ID` int(10) UNSIGNED NOT NULL,
`TITLE` varchar(100) NOT NULL DEFAULT \'\',
`FORMAT` varchar(255) NOT NULL DEFAULT \'\',
`LINKED_OBJECT` varchar(100) NOT NULL DEFAULT \'\',
`LINKED_PROPERTY` varchar(100) NOT NULL DEFAULT \'\'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;');
SQLExec('
INSERT INTO `sys_date_format` (`TITLE`, `FORMAT`, `LINKED_OBJECT`, `LINKED_PROPERTY`) VALUES
(\'Часы\', \'H\', \'ThisComputer\', \'timeNowH\'),
(\'Минуты\', \'i\', \'ThisComputer\', \'timeNowM\'),
(\'Время\', \'H:i\', \'ThisComputer\', \'timeNow\'),
(\'Дата\', \'d1\', \'ThisComputer\', \'dateNow\'),
(\'День недели\', \'n1\', \'ThisComputer\', \'DayOfWeek\');
');
?>