From: Florent Bruneau Date: Fri, 5 Nov 2010 21:04:39 +0000 (+0100) Subject: PlFilterOrder is an abstract class, put a default implementation for X-Git-Tag: core/1.1.2~25 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=e05c0f5486db7ffb0fbd9ca7c0b20484a93c60c5;p=platal.git PlFilterOrder is an abstract class, put a default implementation for export() there. Signed-off-by: Florent Bruneau --- diff --git a/classes/plfilter.php b/classes/plfilter.php index 1a6d525..47abcce 100644 --- a/classes/plfilter.php +++ b/classes/plfilter.php @@ -62,6 +62,11 @@ abstract class PlFilterOrder implements PlExportable $this->_tokens = null; } + public function export() + { + throw new Exception("This instance is not exportable"); + } + public function toggleDesc() { $this->desc = !$this->desc;