Changeset 2077 for MediaWiki/trunk/FCKeditorSkin.body.php
- Timestamp:
- 2008-06-17 15:01:25 (6 months ago)
- Files:
-
- 1 modified
-
MediaWiki/trunk/FCKeditorSkin.body.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
MediaWiki/trunk/FCKeditorSkin.body.php
r1854 r2077 1 1 <?php 2 2 3 class FCKeditorSkin 4 { 3 class FCKeditorSkin { 5 4 private $skin; 6 5 … … 20 19 */ 21 20 function makeImageLinkObj( $nt, $label, $alt, $align = '', $params = array(), $framed = false, 22 $thumb = false, $manual_thumb = '', $valign = '' ) 23 { 21 $thumb = false, $manual_thumb = '', $valign = '' ) { 24 22 $orginal = $nt->getText(); 25 23 $img = new Image( $nt ); … … 216 214 } 217 215 218 function makeKnownLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' , $aprops = '', $style = '' ) 219 { 216 function makeKnownLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' , $aprops = '', $style = '' ) { 220 217 $fname = 'FCKeditorSkin::makeKnownLinkObj'; 221 218 wfProfileIn( $fname ); … … 258 255 } 259 256 260 function makeBrokenLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' ) 261 { 257 function makeBrokenLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' ) { 262 258 # Fail gracefully 263 259 if ( ! isset($nt) ) { … … 345 341 } 346 342 347 function __call( $m, $a) 348 { 343 function __call( $m, $a) { 349 344 return call_user_func_array( array( $this->skin, $m ), $a ); 350 345 } 351 346 352 function __construct( &$skin ) 353 { 347 function __construct( &$skin ) { 354 348 $this->skin = $skin; 355 349 }