From: Kosta Harlan Date: Thu, 3 Jan 2019 18:54:06 +0000 (-0500) Subject: Add getters for properties accessed by Flow X-Git-Tag: 1.34.0-rc.0~3142^2 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/%22%20.%20%22?a=commitdiff_plain;h=61091a2acf183f0e53d8e159a254e95f33309d97;p=lhc%2Fweb%2Fwiklou.git Add getters for properties accessed by Flow Bug: T212771 Follows-Up: Ic2367ca7e8d8b2b7ae4f80ad04081a0db2821de5 Change-Id: I35dad85740cae47877e9eb62d179b1412099aad1 --- diff --git a/includes/specials/pagers/ContribsPager.php b/includes/specials/pagers/ContribsPager.php index ca13f3de85..1220e8617a 100644 --- a/includes/specials/pagers/ContribsPager.php +++ b/includes/specials/pagers/ContribsPager.php @@ -421,6 +421,41 @@ class ContribsPager extends RangeChronologicalPager { return 'rev_timestamp'; } + /** + * @return false|string + */ + public function getTagFilter() { + return $this->tagFilter; + } + + /** + * @return string + */ + public function getContribs() { + return $this->contribs; + } + + /** + * @return string + */ + public function getTarget() { + return $this->target; + } + + /** + * @return bool + */ + public function isNewOnly() { + return $this->newOnly; + } + + /** + * @return int|string + */ + public function getNamespace() { + return $this->namespace; + } + /** * @return string[] */