Index: trunk/phase3/includes/SkinTemplate.php |
— | — | @@ -1386,6 +1386,15 @@ |
1387 | 1387 | $msg = $this->translator->translate( $str ); |
1388 | 1388 | return ( $msg != '-' ) && ( $msg != '' ); # ???? |
1389 | 1389 | } |
| 1390 | + |
| 1391 | + /** |
| 1392 | + * Get the Skin object related to this object |
| 1393 | + * |
| 1394 | + * @return Skin object |
| 1395 | + */ |
| 1396 | + public function getSkin() { |
| 1397 | + return $this->data['skin']; |
| 1398 | + } |
1390 | 1399 | } |
1391 | 1400 | |
1392 | 1401 | /** |