* the terms of the provided license as published by Whirl-i-Gig
 *
 * CollectiveAccess is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTIES whatsoever, including any implied warranty of 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
 *
 * This source code is free and modifiable under the terms of 
 * GNU General Public License. (http://www.gnu.org/copyleft/gpl.html). See
 * the "license.txt" file for details, or visit the CollectiveAccess web site at
 * http://www.CollectiveAccess.org
 *
 * ----------------------------------------------------------------------
 */
$t_item = $this->getVar('t_item');
if (!$t_item->getPrimaryKey()) {
    $vn_importer_count = ca_data_importers::getImporterCount();
    ?>
<h3 class='importers'><?php 
    print _t('Importers');
    ?>
:
<div><?php 
    if ($vn_importer_count == 1) {
        print _t("1 importer is defined");
    } else {
        print _t("%1 importers are defined", $vn_importer_count);
    }
    ?>
</div>
</h3><?php 
} else {