From ca32f08966f1b51fcb19460f0996bb0c4048e6fe Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sat, 3 Dec 2011 13:29:22 +0100 Subject: Update to MediaWiki 1.18.0 * also update ArchLinux skin to chagnes in MonoBook * Use only css to hide our menu bar when printing --- extensions/Gadgets/ApiQueryGadgetCategories.php | 117 ++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 extensions/Gadgets/ApiQueryGadgetCategories.php (limited to 'extensions/Gadgets/ApiQueryGadgetCategories.php') diff --git a/extensions/Gadgets/ApiQueryGadgetCategories.php b/extensions/Gadgets/ApiQueryGadgetCategories.php new file mode 100644 index 00000000..45468966 --- /dev/null +++ b/extensions/Gadgets/ApiQueryGadgetCategories.php @@ -0,0 +1,117 @@ +extractRequestParams(); + $this->props = array_flip( $params['prop'] ); + $this->neededNames = isset( $params['names'] ) + ? array_flip( $params['names'] ) + : false; + + $this->getMain()->setCacheMode( 'public' ); + + $this->getList(); + } + + private function getList() { + $data = array(); + $result = $this->getResult(); + $gadgets = Gadget::loadStructuredList(); + + foreach ( $gadgets as $category => $list ) { + if ( !$this->neededNames || isset( $this->neededNames[$category] ) ) { + $row = array(); + if ( isset( $this->props['name'] ) ) { + $row['name'] = $category; + } + if ( $category !== "" ) { + if ( isset( $this->props['title'] ) ) { + $row['desc'] = wfMessage( "gadget-section-$category" )->parse(); + } + } + if ( isset( $this->props['members'] ) ) { + $row['members'] = count( $list ); + } + $data[] = $row; + } + } + $result->setIndexedTagName( $data, 'category' ); + $result->addValue( 'query', $this->getModuleName(), $data ); + } + + public function getAllowedParams() { + return array( + 'prop' => array( + ApiBase::PARAM_DFLT => 'name', + ApiBase::PARAM_ISMULTI => true, + ApiBase::PARAM_TYPE => array( + 'name', + 'title', + 'members', + ), + ), + 'names' => array( + ApiBase::PARAM_TYPE => 'string', + ApiBase::PARAM_ISMULTI => true, + ), + ); + } + + public function getDescription() { + return 'Returns a list of gadget categories'; + } + + public function getParamDescription() { + return array( + 'prop' => array( + 'What gadget category information to get:', + ' name - Internal category name', + ' title - Category title', + ' members - Number of gadgets in category', + ), + 'names' => 'Name(s) of gadgets to retrieve', + ); + } + + protected function getExamples() { + $params = $this->getAllowedParams(); + $allProps = implode( '|', $params['prop'][ApiBase::PARAM_TYPE] ); + return array( + 'Get a list of existing gadget categories:', + ' api.php?action=query&list=gadgetcategories', + 'Get all information about categories named "foo" and "bar":', + " api.php?action=query&list=gadgetcategories&gcnames=foo|bar&gcprop=$allProps", + ); + } + + public function getVersion() { + return __CLASS__ . ': $Id: ApiQueryGadgetCategories.php 96850 2011-09-12 15:10:26Z reedy $'; + } + +} -- cgit v1.2.3-54-g00ecf