diff options
Diffstat (limited to 'library/SSRS/Report.php')
-rwxr-xr-x | library/SSRS/Report.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/library/SSRS/Report.php b/library/SSRS/Report.php index e517880..6b05ed4 100755 --- a/library/SSRS/Report.php +++ b/library/SSRS/Report.php @@ -243,6 +243,27 @@ class SSRS_Report { } /** + * + * @param type $toggleId + * @return type + */ + public function toggleItem($toggleId) { + $params = array( + 'ToggleID' => $toggleId + ); + return $this->getSoapExecution()->ToggleItem($params); + } + + public function sort($sortId, $direction, $clear) { + $params = array( + 'SortItem' => $sortId, + 'Direction' => $direction, + 'Clear' => $clear, + ); + return $this->getSoapExecution()->Sort($params); + } + + /** * Loads all details relating to a report including all available search parameters * * @param string $Report |