document getImageSize() return format
[lhc/web/wiklou.git] / includes / Pager.php
index 41e9501..a03a1d1 100644 (file)
@@ -559,48 +559,6 @@ abstract class IndexPager extends ContextSource implements Pager {
                return $links;
        }
 
-       /**
-        * Assembles an HTMLForm for the Pager and returns the HTML
-        *
-        * @return string
-        */
-       public function buildHTMLForm() {
-               if ( $this->getHTMLFormFields() === null ) {
-                       throw new MWException( __METHOD__ . " was called without any form fields being defined" );
-               }
-
-               $form = new HTMLForm( $this->getHTMLFormFields(), $this->getContext() );
-               $form->setMethod( 'get' );
-               $form->setWrapperLegendMsg( $this->getHTMLFormLegend() );
-               $form->setSubmitTextMsg( $this->getHTMLFormSubmit() );
-               $this->addHiddenFields( $form );
-               $this->modifyHTMLForm( $form );
-               $form->prepareForm();
-
-               return $form->getHTML( '' );
-       }
-
-       /**
-        * Adds hidden elements to forms for things that are in the query string.
-        * This is so that parameters like offset stick through form submissions
-        *
-        * @param HTMLForm $form
-        */
-       protected function addHiddenFields( HTMLForm $form ) {
-               $query = $this->getRequest()->getQueryValues();
-               $fieldsBlacklist = array( 'title' );
-               $fields = $form->getFlatFields();
-               foreach ( $fields as $name => $field ) {
-                       $fieldsBlacklist[] = $field->getName();
-               }
-               foreach ( $query as $name => $value ) {
-                       if ( in_array( $name, $fieldsBlacklist ) ) {
-                               continue;
-                       }
-                       $form->addHiddenField( $name, $value );
-               }
-       }
-
        /**
         * Abstract formatting function. This should return an HTML string
         * representing the result row $row. Rows will be concatenated and
@@ -677,43 +635,6 @@ abstract class IndexPager extends ContextSource implements Pager {
         * @return Boolean
         */
        protected function getDefaultDirections() { return false; }
-
-       /**
-        * Returns an array for HTMLForm fields for the pager
-        *
-        * Only used if the pager makes use of HTMLForms
-        *
-        * @return array|null
-        */
-       protected function getHTMLFormFields() { return null; }
-
-       /**
-        * Message name for the fieldset legend text
-        *
-        * Only used if the pager makes use of HTMLForms
-        *
-        * @return string
-        */
-       protected function getHTMLFormLegend() { return ''; }
-
-       /**
-        * Message name for the submit button text
-        *
-        * Only used if the pager makes use of HTMLForms
-        *
-        * @return string
-        */
-       protected function getHTMLFormSubmit() { return ''; }
-
-       /**
-        * If the pager needs to do any modifications to the Form, override this
-        * function.
-        *
-        * Only used if the pager makes use of HTMLForms
-        *
-        * @param HTMLForm $form
-        */
-       protected function modifyHTMLForm( HTMLForm $form ) {}
 }
 
 
@@ -1150,27 +1071,6 @@ abstract class TablePager extends IndexPager {
                return $s;
        }
 
-       /**
-        * Returns an HTMLFormField definition for the "Items per page:" dropdown
-        *
-        * @return array
-        */
-       protected function getHTMLFormLimitSelect() {
-               $f = array(
-                       'class' => 'HTMLItemsPerPageField',
-                       'label-message' => 'table_pager_limit_label',
-                       'options' => array(),
-                       'default' => $this->mDefaultLimit,
-                       'name' => 'limit',
-               );
-
-               foreach( $this->mLimitsShown as $limit ) {
-                       $f['options'][$this->getLanguage()->formatNum( $limit )] = $limit;
-               }
-
-               return $f;
-       }
-
        /**
         * Get <input type="hidden"> elements for use in a method="get" form.
         * Resubmits all defined elements of the query string, except for a
@@ -1258,30 +1158,3 @@ abstract class TablePager extends IndexPager {
         */
        abstract function getFieldNames();
 }
-
-/**
- * Items per page dropdown for HTMLForm
- */
-class HTMLItemsPerPageField extends HTMLSelectField {
-       /**
-        * Basically don't do any validation. If it's a number that's fine. Also,
-        * add it to the list if it's not there already
-        *
-        * @param $value
-        * @param $alldata
-        * @return bool
-        */
-       function validate( $value, $alldata ) {
-               if ( $value == '' ) {
-                       return true;
-               }
-
-               if ( !in_array( $value, $this->mParams['options'] ) ) {
-                       $this->mParams['options'][ $this->mParent->getLanguage()->formatNum( $value ) ] = intval($value);
-                       asort( $this->mParams['options'] );
-               }
-
-               return true;
-       }
-
-}
\ No newline at end of file