Remove unused reference to $globals in PlPage
[platal.git] / classes / plfilter.php
index 5dd77e6..8355308 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /***************************************************************************
- *  Copyright (C) 2003-2010 Polytechnique.org                              *
+ *  Copyright (C) 2003-2011 Polytechnique.org                              *
  *  http://opensource.polytechnique.org/                                   *
  *                                                                         *
  *  This program is free software; you can redistribute it and/or modify   *
@@ -123,6 +123,16 @@ abstract class PlFilterGroupableOrder extends PlFilterOrder
     {
         return $this->_tokens;
     }
+
+    /** This function is called when trying to restrict to one of the
+     * specific values of the group token.
+     *
+     * @return A PlFilterCondition.
+     */
+    public function getCondition($group_value)
+    {
+        return null;
+    }
 }
 // }}}
 
@@ -185,7 +195,7 @@ abstract class PFC_OneChild implements PlFilterCondition
 
     public function export()
     {
-        return array('child' => $child->export());
+        return array('child' => $this->child->export());
     }
 }
 // }}}
@@ -384,6 +394,14 @@ abstract class PlFilter implements PlExportable
      */
     public abstract function get($limit = null);
 
+    /** Get ids, selecting only those within a limit
+     * @param $limit The portion of the matching objects to select
+     */
+    public function getIds($limit = null)
+    {
+        return $this->get($limit);
+    }
+
     /** PRIVATE FUNCTIONS
      */