SpecialWantedTemplates.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. /**
  3. * Implements Special:Wantedtemplates
  4. *
  5. * Copyright © 2008, Danny B.
  6. * Based on SpecialWantedcategories.php by Ævar Arnfjörð Bjarmason <avarab@gmail.com>
  7. * makeWlhLink() taken from SpecialMostlinkedtemplates by Rob Church <robchur@gmail.com>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License along
  20. * with this program; if not, write to the Free Software Foundation, Inc.,
  21. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  22. * http://www.gnu.org/copyleft/gpl.html
  23. *
  24. * @file
  25. * @ingroup SpecialPage
  26. * @author Danny B.
  27. */
  28. /**
  29. * A querypage to list the most wanted templates
  30. *
  31. * @ingroup SpecialPage
  32. */
  33. class SpecialWantedTemplates extends WantedQueryPage {
  34. function __construct( $name = 'Wantedtemplates' ) {
  35. parent::__construct( $name );
  36. }
  37. function getQueryInfo() {
  38. return [
  39. 'tables' => [ 'templatelinks', 'page' ],
  40. 'fields' => [
  41. 'namespace' => 'tl_namespace',
  42. 'title' => 'tl_title',
  43. 'value' => 'COUNT(*)'
  44. ],
  45. 'conds' => [
  46. 'page_title IS NULL',
  47. 'tl_namespace' => NS_TEMPLATE
  48. ],
  49. 'options' => [ 'GROUP BY' => [ 'tl_namespace', 'tl_title' ] ],
  50. 'join_conds' => [ 'page' => [ 'LEFT JOIN',
  51. [ 'page_namespace = tl_namespace',
  52. 'page_title = tl_title' ] ] ]
  53. ];
  54. }
  55. protected function getGroupName() {
  56. return 'maintenance';
  57. }
  58. }