Development

Changeset 219

You must first sign up to be able to contribute.

Changeset 219

Show
Ignore:
Timestamp:
12/01/05 19:26:43 (3 years ago)
Author:
francois
Message:

added missing ticks in the view chapter

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/doc/book/content/view.txt

    r215 r219  
    269269    <?php echo $nav_slot ?> 
    270270 
    271 Suppose that you have a module that will not require the nav_slot defined above. You can simply turn off default slot execution 
    272 in your modules config/view.yml. 
     271Suppose that you have a module that will not require the `nav_slot` defined above. You can simply turn off default slot execution in your modules `config/view.yml`. 
    273272 
    274273    all: 
    275274      use_default_slots: off 
    276275 
    277 If you only have specific actions for a module that don't require the nav_slot, you can turn off the default slot execution for that specific action in your modules config/view.yml
     276If you only have specific actions for a module that don't require the `nav_slot`, you can turn off the default slot execution for that specific action in your modules `config/view.yml`
    278277 
    279278    actionnameSuccess: 
    280279      use_default_slots: off 
    281280 
    282 The combinations for this configuration are unlimited. The following would turn off the nav_slot execution for all actions in a module except for the one action. 
     281The combinations for this configuration are unlimited. The following would turn off the `nav_slot` execution for all actions in a module except for the one action. 
    283282 
    284283    actionnameSuccess: 
     
    288287      use_default_slots: off 
    289288 
    290 One more configuration option scenario would be if you wanted to turn off the nav_slot for all actions in a module and execute a new slot and change the layout for this module. 
     289One more configuration option scenario would be if you wanted to turn off the `nav_slot` for all actions in a module and execute a new slot and change the layout for this module. 
    291290 
    292291    all: 
     
    297296        new_slot: [module, action] 
    298297 
    299 >**Note**: The config/view.yml file for your module is not automatically generated by the module initialization. You will need to create this file manually. 
     298>**Note**: The `config/view.yml` file for your module is not automatically generated by the module initialization. You will need to create this file manually. 
    300299 
    301300View configuration