Index: trunk/extensions/SemanticResultFormats/iCalendar/SRF_iCalendar.php |
— | — | @@ -18,8 +18,8 @@ |
19 | 19 | protected $m_title = ''; |
20 | 20 | protected $m_description = ''; |
21 | 21 | |
22 | | - protected function readParameters( $params, $outputmode ) { |
23 | | - parent::readParameters( $params, $outputmode ); |
| 22 | + protected function handleParameters( $params, $outputmode ) { |
| 23 | + parent::handleParameters( $params, $outputmode ); |
24 | 24 | |
25 | 25 | if ( array_key_exists( 'title', $this->m_params ) ) { |
26 | 26 | $this->m_title = trim( $this->m_params['title'] ); |
Index: trunk/extensions/SemanticResultFormats/Math/SRF_Math.php |
— | — | @@ -27,7 +27,7 @@ |
28 | 28 | * @see SMWResultPrinter::getResult() |
29 | 29 | */ |
30 | 30 | public function getResult( SMWQueryResult $results, array $params, $outputmode ) { |
31 | | - $this->readParameters( $params, $outputmode ); |
| 31 | + $this->handleParameters( $params, $outputmode ); |
32 | 32 | global $wgLang; |
33 | 33 | return $wgLang->formatNum( $this->getResultText( $results, SMW_OUTPUT_HTML ) ); |
34 | 34 | } |
Index: trunk/extensions/SemanticResultFormats/Gallery/SRF_Gallery.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | |
19 | 19 | public function getResult( SMWQueryResult $results, array $params, $outputmode ) { |
20 | 20 | // skip checks, results with 0 entries are normal |
21 | | - $this->readParameters( $params, $outputmode ); |
| 21 | + $this->handleParameters( $params, $outputmode ); |
22 | 22 | return $this->getResultText( $results, SMW_OUTPUT_HTML ); |
23 | 23 | } |
24 | 24 | |
Index: trunk/extensions/SemanticResultFormats/Calendar/SRF_Calendar.php |
— | — | @@ -16,8 +16,8 @@ |
17 | 17 | protected $mUserParam = ''; |
18 | 18 | protected $mRealUserLang = null; |
19 | 19 | |
20 | | - protected function readParameters( $params, $outputmode ) { |
21 | | - parent::readParameters( $params, $outputmode ); |
| 20 | + protected function handleParameters( $params, $outputmode ) { |
| 21 | + parent::handleParameters( $params, $outputmode ); |
22 | 22 | |
23 | 23 | if ( array_key_exists( 'template', $params ) ) { |
24 | 24 | $this->mTemplate = trim( $params['template'] ); |
— | — | @@ -45,7 +45,7 @@ |
46 | 46 | $this->hasTemplates = false; |
47 | 47 | |
48 | 48 | // skip checks, results with 0 entries are normal |
49 | | - $this->readParameters( $params, $outputmode ); |
| 49 | + $this->handleParameters( $params, $outputmode ); |
50 | 50 | return $this->getResultText( $results, SMW_OUTPUT_HTML ); |
51 | 51 | } |
52 | 52 | |
Index: trunk/extensions/SemanticResultFormats/Outline/SRF_Outline.php |
— | — | @@ -84,8 +84,8 @@ |
85 | 85 | protected $mOutlineProperties = array(); |
86 | 86 | protected $mInnerFormat = ''; |
87 | 87 | |
88 | | - protected function readParameters( $params, $outputmode ) { |
89 | | - parent::readParameters( $params, $outputmode ); |
| 88 | + protected function handleParameters( $params, $outputmode ) { |
| 89 | + parent::handleParameters( $params, $outputmode ); |
90 | 90 | |
91 | 91 | if ( array_key_exists( 'outlineproperties', $params ) ) { |
92 | 92 | $this->mOutlineProperties = array_map( 'trim', explode( ',', $params['outlineproperties'] ) ); |