<?php
// $Id: inc_rubric_download.php,v 1.1 2009/10/02 18:06:28 jackewitz Exp $
//
// Release $Name: Rel-7-2-4 $
//
// Copyright (c)2009 Iver Jackewitz
//
// This file is part of CommSy.
//
// CommSy is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// CommSy is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You have received a copy of the GNU General Public License
// along with CommSy.
$list2zip = $class_factory->getClass(MISC_LIST2ZIP,array('environment' => $environment));
$list2zip->setItemIDArray($selected_ids);
$list2zip->setModule($environment->getCurrentModule());
$list2zip->execute();
$list2zip->send();
exit();
?>