Index: trunk/extensions/skins/Schulenburg/Schulenburg.class.php |
— | — | @@ -41,7 +41,7 @@ |
42 | 42 | padding: 0px; |
43 | 43 | background-image:url(<?php echo htmlspecialchars( "{$this->path}/images/background.gif" ) ; ?> ); background-repeat:repeat-y; |
44 | 44 | background-position:center; |
45 | | - background-color:#006699; |
| 45 | + background-color:#006699; |
46 | 46 | font-family: Verdana, Arial, Sans-Serif; |
47 | 47 | font-size: 10pt; |
48 | 48 | } |
— | — | @@ -57,5 +57,17 @@ |
58 | 58 | |
59 | 59 | <?php |
60 | 60 | } |
| 61 | + |
| 62 | + /** |
| 63 | + * Add skin specific stylesheets |
| 64 | + * Calling this method with an $out of anything but the same OutputPage |
| 65 | + * inside ->getOutput() is deprecated. The $out arg is kept |
| 66 | + * for compatibility purposes with skins. |
| 67 | + * @param $out OutputPage |
| 68 | + * @delete |
| 69 | + */ |
| 70 | + function setupSkinUserCss(OutputPage $out) { |
| 71 | + // TODO: Implement setupSkinUserCss() method. |
| 72 | + } |
61 | 73 | } |
62 | 74 | |
Index: trunk/extensions/skins/Tomas/Tomas.class.php |
— | — | @@ -35,12 +35,12 @@ |
36 | 36 | <script type="text/javascript" src="<?php echo htmlspecialchars( $this->getMainJs() ); ?>"></script> |
37 | 37 | <link rel="stylesheet" href="<?php echo htmlspecialchars( $siteCss ); ?>" type="text/css"/> |
38 | 38 | <script type="text/javascript" src="<?php echo htmlspecialchars( $siteJs ); ?>"></script> |
39 | | - |
| 39 | + |
40 | 40 | </head> |
41 | 41 | |
42 | 42 | <body> |
43 | 43 | <div align="center"> |
44 | | - |
| 44 | + |
45 | 45 | <?php echo $bodyText ?> |
46 | 46 | </div> |
47 | 47 | </body> |
— | — | @@ -48,5 +48,17 @@ |
49 | 49 | |
50 | 50 | <?php |
51 | 51 | } |
| 52 | + |
| 53 | + /** |
| 54 | + * Add skin specific stylesheets |
| 55 | + * Calling this method with an $out of anything but the same OutputPage |
| 56 | + * inside ->getOutput() is deprecated. The $out arg is kept |
| 57 | + * for compatibility purposes with skins. |
| 58 | + * @param $out OutputPage |
| 59 | + * @delete |
| 60 | + */ |
| 61 | + function setupSkinUserCss(OutputPage $out) { |
| 62 | + // TODO: Implement setupSkinUserCss() method. |
| 63 | + } |
52 | 64 | } |
53 | 65 | |
Index: trunk/extensions/skins/Donate/Donate.class.php |
— | — | @@ -35,12 +35,12 @@ |
36 | 36 | <script type="text/javascript" src="<?php echo htmlspecialchars( $this->getMainJs() ); ?>"></script> |
37 | 37 | <link rel="stylesheet" href="<?php echo htmlspecialchars( $siteCss ); ?>" type="text/css"/> |
38 | 38 | <script type="text/javascript" src="<?php echo htmlspecialchars( $siteJs ); ?>"></script> |
39 | | - |
| 39 | + |
40 | 40 | </head> |
41 | 41 | |
42 | 42 | <body> |
43 | 43 | <div align="center"> |
44 | | - |
| 44 | + |
45 | 45 | <?php echo $bodyText ?> |
46 | 46 | </div> |
47 | 47 | </body> |
— | — | @@ -48,5 +48,17 @@ |
49 | 49 | |
50 | 50 | <?php |
51 | 51 | } |
| 52 | + |
| 53 | + /** |
| 54 | + * Add skin specific stylesheets |
| 55 | + * Calling this method with an $out of anything but the same OutputPage |
| 56 | + * inside ->getOutput() is deprecated. The $out arg is kept |
| 57 | + * for compatibility purposes with skins. |
| 58 | + * @param $out OutputPage |
| 59 | + * @delete |
| 60 | + */ |
| 61 | + function setupSkinUserCss(OutputPage $out) { |
| 62 | + // TODO: Implement setupSkinUserCss() method. |
| 63 | + } |
52 | 64 | } |
53 | 65 | |