Changes between Version 9 and Version 10 of DolDesign
- Timestamp:
- Nov 6, 2017, 1:06:29 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DolDesign
v9 v10 2 2 == '''''Custom template creation''''' == 3 3 4 Design templates in the new Dolphin 7 are a little bit different from Dolphin 6. Now almost all content representation can be controlled by system templates and modules templates. See the description of the '''/inc/classes/BxDolTemplate ''' classfor the complete list.4 Design templates in the new Dolphin 7 are a little bit different from Dolphin 6. Now almost all content representation can be controlled by system templates and modules templates. See the description of the '''/inc/classes/BxDolTemplate.php''' file for the complete list. 5 5 6 6 To start new templates, it is best to make it a copy of the UNI template, then edit '''scripts/BxTemplName.php''' in your template folde. UNI is an empty template which inherits the base template only. The base template is never used directly, but all other templates must inherit it, and override only the necessary features. After you make a copy of the UNI template, you can start to override its styles. … … 15 15 In most cases, all you need is to override some CSS, html and PHP files, but in some rare cases you need to modify modules design too. In this case you need to follow the same rules but regarding the module templates directory, it also has ''css'', ''script'' directories like main site templates, and also all modules come with the base template. 16 16 17 For more information about templates see the '''/inc/classes/BxDolTemplate ''' class.17 For more information about templates see the '''/inc/classes/BxDolTemplate.php''' file.