[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
perpustakaan
/
admin
/
modules
/
bibliography
/
[
Home
]
File: submenu.php
<?php /** * Copyright (C) 2007,2008 Arie Nugraha (dicarve@yahoo.com) * * This program 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 3 of the License, or * (at your option) any later version. * * This program 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 should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * */ /* Bibliographic module submenu items */ // IP based access limitation do_checkIP('smc'); do_checkIP('smc-bibliography'); $menu[] = array('Header', __('Bibliographic')); $menu[] = array(__('Bibliographic List'), MWB.'bibliography/index.php', __('Show Existing Bibliographic Data')); $menu[] = array(__('Add New Bibliography'), MWB.'bibliography/index.php?action=detail', __('Add New Bibliographic Data/Catalog')); $menu[] = array('Header', __('Items')); $menu[] = array(__('Item List'), MWB.'bibliography/item.php', __('Show List of Library Items')); $menu[] = array(__('Checkout Items'), MWB.'bibliography/checkout_item.php', __('Show List of Checkout Items')); $menu[] = array('Header', __('Copy Cataloguing')); $menu[] = array(__('Z3950 SRU'), MWB.'bibliography/z3950sru.php', __('Grab Bibliographic Data from Z3950 SRU Web Services')); $menu[] = array(__('Z3950 Service'), MWB.'bibliography/z3950.php', __('Grab Bibliographic Data from Z3950 Web Services')); $menu[] = array(__('P2P Service'), MWB.'bibliography/p2p.php', __('Grab Bibliographic Data from Other SLiMS Web Services')); $menu[] = array('Header', __('Tools')); $menu[] = array(__('Labels Printing'), MWB.'bibliography/dl_print.php', __('Print Document Labels')); $menu[] = array(__('Item Barcodes Printing'), MWB.'bibliography/item_barcode_generator.php', __('Print Item Barcodes')); $menu[] = array(__('MARC Export'), MWB.'bibliography/marcexport.php', __('Export Bibliographic Data to MARC file')); $menu[] = array(__('MARC Import'), MWB.'bibliography/marcimport.php', __('Import Bibliographic Data from MARC file')); $menu[] = array(__('Catalog Printing'), MWB.'bibliography/printed_card.php', __('Print Catalog Card')); $menu[] = array(__('Data Export'), MWB.'bibliography/export.php', __('Export Bibliographic Data To CSV format')); $menu[] = array(__('Data Import'), MWB.'bibliography/import.php', __('Import Data to Bibliographic Database from CSV file')); $menu[] = array(__('Item Export'), MWB.'bibliography/item_export.php', __('Export Item/Copies data To CSV format')); $menu[] = array(__('Item Import'), MWB.'bibliography/item_import.php', __('Import Data to Item/Copies database from CSV file'));