/**
  * Add the last results from a search query for a form.
  * @param string $form The form name
  * @param integer $count The number of results.
  */
 public static function setLastListCount($form, $count)
 {
     if (!is_array(self::$lastListCount)) {
         self::$lastListCount = array();
     }
     self::$lastListCount[$form] = $count;
 }