webmcp
annotate framework/env/slot/layout_is_set.lua @ 566:3b71fdb3a00d
Updated year + version in documentation
| author | jbe | 
|---|---|
| date | Wed Apr 28 12:54:38 2021 +0200 (2021-04-28) | 
| parents | 93ebbc1e5dbc | 
| children | 
| rev | line source | 
|---|---|
| jbe@492 | 1 --[[-- | 
| jbe@492 | 2 bool = -- set to true if layout has been set explicitly during processing request | 
| jbe@492 | 3 slot.layout_is_set() | 
| jbe@492 | 4 | 
| jbe@492 | 5 Returns true if slot.set_layout(...) has been called during handling of a request. | 
| jbe@492 | 6 | 
| jbe@492 | 7 --]]-- | 
| jbe@492 | 8 | 
| jbe@492 | 9 function slot.layout_is_set() | 
| jbe@492 | 10 return slot._layout_set | 
| jbe@492 | 11 end |