| 12345678910111213141516171819202122232425 | <?phpclass QueueUI {  /**   * Return the QueueUI class object for working with.   *   * @param $class   *  The queue class name to work with.   *   * @return mixte   *  The queue object for a given name, or FALSE if the QueueUI class does not exist for   *  the specified queue class.   */  public static function get($class) {    if (class_exists($class)) {      $object = new $class();      return $object;    }    // If class does not exist then QueueUI has not been implemented for this class.    return FALSE;  }}
 |