Index: trunk/extensions/Storyboard/Storyboard_Settings.php |
— | — | @@ -17,11 +17,37 @@ |
18 | 18 | die( 'Not an entry point.' ); |
19 | 19 | } |
20 | 20 | |
| 21 | +/** |
| 22 | + * The maximum length of a story (in characters) that can be submitted via the storysubmission tag. |
| 23 | + * Can be overriden by the maxlength parameter in the storysubmission tag. |
| 24 | + * @var integer |
| 25 | + */ |
21 | 26 | $egStoryboardMaxStoryLen = 1000; |
| 27 | +/** |
| 28 | + * The minimum length of a story (in characters) that can be submitted via the storysubmission tag. |
| 29 | + * Can be overriden by the minlength parameter in the storysubmission tag. |
| 30 | + * @var integer |
| 31 | + */ |
22 | 32 | $egStoryboardMinStoryLen = 10; |
23 | 33 | |
| 34 | +/** |
| 35 | + * The default width of storyboards, either in pixels, or as percentage. |
| 36 | + * @var mixed |
| 37 | + */ |
24 | 38 | $egStoryboardWidth = '80%'; |
25 | | -$egStoryboardHieght = 400; |
| 39 | +/** |
| 40 | + * The default height of storyboards, either in pixels, or as percentage. |
| 41 | + * @var mixed |
| 42 | + */ |
| 43 | +$egStoryboardHeight = 400; |
26 | 44 | |
| 45 | +/** |
| 46 | + * TODO: document |
| 47 | + * @var integer |
| 48 | + */ |
27 | 49 | $egStoryboardBatchSize = 5; |
| 50 | +/** |
| 51 | + * TODO: document |
| 52 | + * @var integer |
| 53 | + */ |
28 | 54 | $egStoryboardBatchAmount = 2; |
\ No newline at end of file |