Index: trunk/extensions/Storyboard/specials/StoryReview_body.php |
— | — | @@ -1,26 +1,26 @@ |
2 | | -<?php
|
3 | | -/**
|
4 | | - * File holding the SpecialStoryReview class that allows reviewers to moderate the submitted stories.
|
5 | | - *
|
6 | | - * @file StoryReview_body.php
|
7 | | - * @ingroup Storyboard
|
8 | | - *
|
9 | | - * @author Jeroen De Dauw
|
10 | | - */
|
11 | | -
|
12 | | -if ( !defined( 'MEDIAWIKI' ) ) {
|
13 | | - die( 'Not an entry point.' );
|
14 | | -}
|
15 | | -
|
16 | | -class SpecialStoryReview extends IncludableSpecialPage {
|
17 | | -
|
18 | | - function __construct() {
|
19 | | - parent::__construct( 'StoryReview' );
|
20 | | -
|
21 | | - wfLoadExtensionMessages( 'Storyboard' );
|
22 | | - }
|
23 | | -
|
24 | | - function execute( $language ) {
|
25 | | - global $wgOut;
|
26 | | - }
|
27 | | -}
|
| 2 | +<?php |
| 3 | +/** |
| 4 | + * File holding the SpecialStoryReview class that allows reviewers to moderate the submitted stories. |
| 5 | + * |
| 6 | + * @file StoryReview_body.php |
| 7 | + * @ingroup Storyboard |
| 8 | + * |
| 9 | + * @author Jeroen De Dauw |
| 10 | + */ |
| 11 | + |
| 12 | +if ( !defined( 'MEDIAWIKI' ) ) { |
| 13 | + die( 'Not an entry point.' ); |
| 14 | +} |
| 15 | + |
| 16 | +class SpecialStoryReview extends IncludableSpecialPage { |
| 17 | + |
| 18 | + function __construct() { |
| 19 | + parent::__construct( 'StoryReview' ); |
| 20 | + |
| 21 | + wfLoadExtensionMessages( 'Storyboard' ); |
| 22 | + } |
| 23 | + |
| 24 | + function execute( $language ) { |
| 25 | + global $wgOut; |
| 26 | + } |
| 27 | +} |
Property changes on: trunk/extensions/Storyboard/specials/StoryReview_body.php |
___________________________________________________________________ |
Name: svn:eol-style |
28 | 28 | + native |
Index: trunk/extensions/Storyboard/INSTALL |
— | — | @@ -1,5 +1,5 @@ |
2 | | -Once you have downloaded the code, place the 'Storyboard' directory within your MediaWiki 'extensions' directory.
|
3 | | -Then add the following code to your LocalSettings.php file:
|
4 | | -
|
5 | | -# Maps
|
| 2 | +Once you have downloaded the code, place the 'Storyboard' directory within your MediaWiki 'extensions' directory. |
| 3 | +Then add the following code to your LocalSettings.php file: |
| 4 | + |
| 5 | +# Maps |
6 | 6 | require_once( "$IP/extensions/Storyboard/Storyboard.php" ); |
\ No newline at end of file |
Property changes on: trunk/extensions/Storyboard/INSTALL |
___________________________________________________________________ |
Name: svn:eol-style |
7 | 7 | + native |
Property changes on: trunk/extensions/Storyboard/RELEASE-NOTES |
___________________________________________________________________ |
Name: svn:eol-style |
8 | 8 | + native |
Index: trunk/extensions/Storyboard/tags/Storysubmission_body.php |
— | — | @@ -1,22 +1,22 @@ |
2 | | -<?php
|
3 | | -
|
4 | | -/**
|
5 | | - * File holding the rendering function for the Storysubmission tag.
|
6 | | - *
|
7 | | - * @file Storysubmission_body.php
|
8 | | - * @ingroup Storyboard
|
9 | | - *
|
10 | | - * @author Jeroen De Dauw
|
11 | | - */
|
12 | | -
|
13 | | -if ( !defined( 'MEDIAWIKI' ) ) {
|
14 | | - die( 'Not an entry point.' );
|
15 | | -}
|
16 | | -
|
17 | | -class TagStorysubmission {
|
18 | | -
|
19 | | - public static function render( $input, $args, $parser, $frame ) {
|
20 | | - return '';
|
21 | | - }
|
22 | | -
|
| 2 | +<?php |
| 3 | + |
| 4 | +/** |
| 5 | + * File holding the rendering function for the Storysubmission tag. |
| 6 | + * |
| 7 | + * @file Storysubmission_body.php |
| 8 | + * @ingroup Storyboard |
| 9 | + * |
| 10 | + * @author Jeroen De Dauw |
| 11 | + */ |
| 12 | + |
| 13 | +if ( !defined( 'MEDIAWIKI' ) ) { |
| 14 | + die( 'Not an entry point.' ); |
| 15 | +} |
| 16 | + |
| 17 | +class TagStorysubmission { |
| 18 | + |
| 19 | + public static function render( $input, $args, $parser, $frame ) { |
| 20 | + return ''; |
| 21 | + } |
| 22 | + |
23 | 23 | } |
\ No newline at end of file |
Property changes on: trunk/extensions/Storyboard/tags/Storysubmission_body.php |
___________________________________________________________________ |
Name: svn:eol-style |
24 | 24 | + native |
Index: trunk/extensions/Storyboard/tags/Storyboard_body.php |
— | — | @@ -1,25 +1,25 @@ |
2 | | -<?php
|
3 | | -
|
4 | | -/**
|
5 | | - * File holding the rendering function for the Storyboard tag.
|
6 | | - *
|
7 | | - * @file Storyboard_body.php
|
8 | | - * @ingroup Storyboard
|
9 | | - *
|
10 | | - * @author Jeroen De Dauw
|
11 | | - */
|
12 | | -
|
13 | | -if ( !defined( 'MEDIAWIKI' ) ) {
|
14 | | - die( 'Not an entry point.' );
|
15 | | -}
|
16 | | -
|
17 | | -class TagStoryboard {
|
18 | | -
|
19 | | - public static function render( $input, $args, $parser, $frame ) {
|
20 | | - return '';
|
21 | | - }
|
22 | | -
|
23 | | -}
|
24 | | -
|
25 | | -
|
26 | | -
|
| 2 | +<?php |
| 3 | + |
| 4 | +/** |
| 5 | + * File holding the rendering function for the Storyboard tag. |
| 6 | + * |
| 7 | + * @file Storyboard_body.php |
| 8 | + * @ingroup Storyboard |
| 9 | + * |
| 10 | + * @author Jeroen De Dauw |
| 11 | + */ |
| 12 | + |
| 13 | +if ( !defined( 'MEDIAWIKI' ) ) { |
| 14 | + die( 'Not an entry point.' ); |
| 15 | +} |
| 16 | + |
| 17 | +class TagStoryboard { |
| 18 | + |
| 19 | + public static function render( $input, $args, $parser, $frame ) { |
| 20 | + return ''; |
| 21 | + } |
| 22 | + |
| 23 | +} |
| 24 | + |
| 25 | + |
| 26 | + |
Property changes on: trunk/extensions/Storyboard/tags/Storyboard_body.php |
___________________________________________________________________ |
Name: svn:eol-style |
27 | 27 | + native |