ชื่อเรื่อง
Permalink
เนื้อหา
Old | New |
---|
1 | | 1 | # Document (System Node)
|
---|
| | 2 |
|
---|
| | 3 | The Document system node is a globally available object that holds details about the current page.
|
---|
| | 4 |
|
---|
| | 5 | ## LiteCart 2.x
|
---|
| | 6 |
|
---|
| | 7 | ```
|
---|
| | 8 | document::$snippets['title'][] = 'Added Page Title';
|
---|
| | 9 | document::$snippets['head_tags'][] = '';
|
---|
| | 10 | document::$snippets['foot_tags'][] = '';
|
---|
| | 11 | document::$snippets['style'][] = 'strong { font-weight: 700; }';
|
---|
| | 12 | document::$snippets['javascript'][] = 'alert("Hi");';
|
---|
| | 13 | ```
|
---|
| | 14 |
|
---|
| | 15 | ## LiteCart 3.x
|
---|
| | 16 |
|
---|
| | 17 | ```
|
---|
| | 18 | document::$title[] = 'Added Page Title';
|
---|
| | 19 | document::$head_tags[] = '';
|
---|
| | 20 | document::$foot_tags[] = '';
|
---|
| | 21 | document::$style[] = 'strong { font-weight: 700; }';
|
---|
| | 22 | document::$javascript[] = 'alert("Hi");';
|
---|
| | 23 | ``` |
---|
Edited by tim on 27 ธ.ค. 2023 at 07:27