00001 <?php 00019 if ( !defined( 'MEDIAWIKI' ) ) { 00020 die( 'Not an entry point.' ); 00021 } 00022 00023 include_once( "SRF_Ploticus.php" ); 00024 00031 class SRFPloticusVBar extends SRFPloticus { 00032 00033 protected function readParameters( $params, $outputmode ) { 00034 parent::readParameters( $params, $outputmode ); 00035 00036 // All other options will be simply ignored; 00037 $this->m_ploticusmode === 'prefab'; 00038 $this->m_ploticusparams = "-prefab vbars x=1 y=2"; 00039 } 00040 00041 }
1.5.6