Windows NT WIN-F6SLGVICLOP 10.0 build 17763 (Windows Server 2016) AMD64
Microsoft-IIS/10.0
Server IP : & Your IP : 3.147.45.232
Domains :
Cant Read [ /etc/named.conf ]
User : elibrary.unsap.ac.id
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
D: /
localhost /
elibrary /
template /
lightweight /
Delete
Unzip
Name
Size
Permission
Date
Action
citation
[ DIR ]
drwxrwxrwx
2020-02-14 07:54
css
[ DIR ]
drwxrwxrwx
2020-02-14 07:54
fonts
[ DIR ]
drwxrwxrwx
2020-02-14 07:54
img
[ DIR ]
drwxrwxrwx
2020-02-14 07:54
js
[ DIR ]
drwxrwxrwx
2020-02-14 07:54
partials
[ DIR ]
drwxrwxrwx
2020-02-14 07:54
biblio_list_template.php
10.45
KB
-rw-rw-rw-
2020-02-14 07:54
custom_frontpage_record.inc.php
454
B
-rw-rw-rw-
2020-02-14 07:54
detail_template.php
6.64
KB
-rw-rw-rw-
2020-02-14 07:54
index_template.inc.php
10.39
KB
-rw-rw-rw-
2020-02-14 07:54
login_template.inc.php
2.85
KB
-rw-rw-rw-
2020-02-14 07:54
news_template.php
492
B
-rw-rw-rw-
2020-02-14 07:54
preview.png
63.96
KB
-rw-rw-rw-
2020-02-14 07:54
style.css
43.03
KB
-rw-rw-rw-
2020-02-14 07:54
tinfo.inc.php
717
B
-rw-rw-rw-
2020-02-14 07:54
visitor_template.php
2.55
KB
-rw-rw-rw-
2020-02-14 07:54
Save
Rename
<?php /** * Template for Biblio List * name of memberID text field must be: memberID * name of institution text field must be: institution * * Copyright (C) 2015 Arie Nugraha (dicarve@gmail.com) * Create by Eddy Subratha (eddy.subratha@slims.web.id) * * Slims 8 (Akasia) * * 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 */ $label_cache = array(); /** * * Format bibliographic item list for OPAC display * * @param object $dbs * @param array $biblio_detail * @param int $n * @param array $settings * @param array $return_back * * return string * */ function biblio_list_format($dbs, $biblio_detail, $n, $settings = array(), &$return_back = array()) { global $label_cache, $sysconf; // init output var $output = ''; $title = $biblio_detail['title']; $biblio_id = $biblio_detail['biblio_id']; $detail_url = SWB.'index.php?p=show_detail&id='.$biblio_id.'&keywords='.$settings['keywords']; $cite_url = SWB.'index.php?p=cite&id='.$biblio_id.'&keywords='.$settings['keywords']; $title_link = '<a href="'.$detail_url.'" class="titleField" itemprop="name" property="name" title="'.__('View record detail description for this title').'">'.$title.'</a>'; // label if ($settings['show_labels'] AND !empty($biblio_detail['labels'])) { $labels = @unserialize($biblio_detail['labels']); if ($labels !== false) { foreach ($labels as $label) { if (!isset($label_cache[$label[0]]['name'])) { $label_q = $dbs->query('SELECT label_name, label_desc, label_image FROM mst_label AS lb WHERE lb.label_name=\''.$dbs->escape_string($label[0]).'\''); $label_d = $label_q->fetch_row(); $label_cache[$label[0]] = array( 'name' => $label_d[0], 'desc' => $label_d[1], 'image' => $label_d[2] ); } if (isset($label[1]) && $label[1]) { $title_link .= ' <a itemprop="name" property="name" href="'.$label[1].'" target="_blank"><img src="'.SWB.'lib/minigalnano/createthumb.php?filename=../../'.IMG.'/labels/'.urlencode($label_cache[$label[0]]['image']).'&width=48&height=48" title="'.$label_cache[$label[0]]['desc'].'" alt="'.$label_cache[$label[0]]['desc'].'" align="middle" class="labels" border="0" /></a>'; } else { $title_link .= ' <img src="'.SWB.'lib/minigalnano/createthumb.php?filename=../../'.IMG.'/labels/'.urlencode($label_cache[$label[0]]['image']).'&width=48&height=48" title="'.$label_cache[$label[0]]['desc'].'" alt="'.$label_cache[$label[0]]['desc'].'" align="middle" class="labels" />'; } } } } // button $xml_button = ''; $detail_button = '<a href="'.$detail_url.'" class="detailLink" title="'.__('View record detail description for this title').'">'.__('Record Detail').'</a>'; if ($settings['xml_detail']) { $xml_button = '<a href="'.$detail_url.'&inXML=true" class="xmlDetailLink" title="'.__('View record detail description in XML Format').'" target="_blank">'.__('XML Detail').'</a>'; } // citation button $cite_button = '<a href="'.$cite_url.'" class="openPopUp citationLink" title="'.str_replace('{title}', substr($title, 0, 50) , __('Citation for: {title}')).'" target="_blank">'.__('Cite').'</a>'; // cover images var $image_cover = ''; if (!empty($biblio_detail['image']) && !defined('LIGHTWEIGHT_MODE')) { $biblio_detail['image'] = urlencode($biblio_detail['image']); $images_loc = '../../images/docs/'.$biblio_detail['image']; if ($sysconf['tg']['type'] == 'minigalnano') { $thumb_url = './lib/minigalnano/createthumb.php?filename='.urlencode($images_loc).'&width=120'; $image_cover = '<img src="'.$thumb_url.'" class="img-thumbnail" itemprop="image" alt="'.$title.'" />'; } } // $alt_list = ($n%2 == 0)?'alterList':'alterList2'; $output .= '<div class="item biblioRecord" itemscope itemtype="http://schema.org/Book" vocab="http://schema.org/" typeof="Book"><div class="cover-list">'.$image_cover.'</div>'; $output .= '<div class="detail-list"><h4>'.$title_link.'</h4>'; // concat author data $_authors = isset($biblio_detail['author'])?$biblio_detail['author']:biblio_list_model::getAuthors($dbs, $biblio_id, true); $output .= '<div class="author" itemprop="author" property="author" itemscope itemtype="http://schema.org/Person">'; if ($_authors) { $_authors_string = ''; if (is_array($_authors)) { foreach ($_authors as $author) { $_authors_string .= '<span class="author-name" itemprop="name" property="name">'.$author.'</span> - '; } } else { $_authors_string .= '<span class="author-name" itemprop="name" property="name">'.$_authors.'</span> - '; } $_authors_string = substr_replace($_authors_string, '', -2); $output .= $_authors_string; // $output .= '<div class="author" itemprop="author"><b>'.__('Author(s)').'</b> : '.$_authors.'</div>'; } $output .= '</div>'; // checking custom frontpage file if ($settings['enable_custom_frontpage'] AND $settings['custom_fields']) { foreach ($settings['custom_fields'] as $field => $field_opts) { if ($field_opts[0] == 1) { if ($field == 'edition') { $output .= '<div class="customField editionField" itemprop="bookEdition" property="bookEdition"><b>'.$field_opts[1].'</b> : '.$biblio_detail['edition'].'</div>'; } else if ($field == 'isbn_issn') { $output .= '<div class="customField isbnField" itemprop="isbn" property="isbn"><b>'.$field_opts[1].'</b> : '.$biblio_detail['isbn_issn'].'</div>'; } else if ($field == 'collation') { $output .= '<div class="customField collationField" itemprop="numberOfPages" property="numberOfPages"><b>'.$field_opts[1].'</b> : '.$biblio_detail['collation'].'</div>'; } else if ($field == 'series_title') { $output .= '<div class="customField seriesTitleField" itemprop="alternativeHeadline" property="alternativeHeadline"><b>'.$field_opts[1].'</b> : '.$biblio_detail['series_title'].'</div>'; } else if ($field == 'call_number') { $output .= '<div class="customField callNumberField"><b>'.$field_opts[1].'</b> : '.$biblio_detail['call_number'].'</div>'; } else if ($field == 'availability' && !$settings['disable_item_data']) { // get total number of this biblio items/copies $_item_q = $dbs->query('SELECT COUNT(*) FROM item WHERE biblio_id='.$biblio_id); $_item_c = $_item_q->fetch_row(); // get total number of currently borrowed copies $_borrowed_q = $dbs->query('SELECT COUNT(*) FROM loan AS l INNER JOIN item AS i' .' ON l.item_code=i.item_code WHERE l.is_lent=1 AND l.is_return=0 AND i.biblio_id='.$biblio_id); $_borrowed_c = $_borrowed_q->fetch_row(); // total available $_total_avail = $_item_c[0]-$_borrowed_c[0]; if ($_total_avail < 1) { $output .= '<div class="customField availabilityField"><b>'.$field_opts[1].'</b> : <strong style="color: #f00;">'.__('none copy available').'</strong></div>'; } else { $item_availability_message = str_replace('{numberAvailable}' , $_total_avail, __('{numberAvailable} copies available for loan')); $output .= '<div class="customField availabilityField"><b>'.$field_opts[1].'</b> : '.$item_availability_message.'</div>'; } } else if ($field == 'node_id' && $settings['disable_item_data']) { $output .= '<div class="customField locationField"><b>'.$field_opts[1].'</b> : '.$sysconf['node'][$biblio_detail['node_id']]['name'].'</div>'; } } } } // checkbox for marking collection $_i= rand(); // Add By Eddy Subratha $_check_mark = (utility::isMemberLogin() && $settings['enable_mark'])?' <input type="checkbox" id="biblioCheck'.$_i.'" name="biblio[]" class="biblioCheck" value="'.$biblio_id.'" /> <label for="biblioCheck'.$_i.'">'.__('mark this').'</label>':''; $output .= '<div class="subItem">'.$detail_button.$xml_button.$_check_mark.$cite_button.'</div>'; // social buttons if ($sysconf['social_shares']) { // share buttons $detail_url_encoded = urlencode('http://'.$_SERVER['SERVER_NAME'].$detail_url); $_share_btns = "\n".'<ul class="share-buttons">'. '<li>'.__('Share to').': </li>'. '<li><a href="http://www.facebook.com/sharer.php?u='.$detail_url_encoded.'" title="Facebook" target="_blank"><img src="./images/default/fb.gif" alt="'.__('Share this title to Facebook').'" /></a></li>'. '<li><a href="http://twitter.com/share?url='.$detail_url_encoded.'&text='.urlencode($title).'" title="Twitter" target="_blank"><img src="./images/default/tw.gif" alt="'.__('Share this title to Twitter').'" /></a></li>'. '<li><a href="https://plus.google.com/share?url='.$detail_url_encoded.'" title="Google Plus" target="_blank"><img src="./images/default/gplus.gif" alt="'.__('Share this title to Google Plus').'" /></a></li>'. '<li><a href="http://www.digg.com/submit?url='.$detail_url_encoded.'" title="Digg It" target="_blank"><img src="./images/default/digg.gif" alt="'.__('Share this title to Digg It').'" /></a></li>'. '<li><a href="http://reddit.com/submit?url='.$detail_url_encoded.'&title='.urlencode($title).'" title="Reddit" target="_blank"><img src="./images/default/rdit.gif" alt="'.__('Share this title to Reddit').'" /></a></li>'. '<li><a href="http://www.linkedin.com/shareArticle?mini=true&url='.$detail_url_encoded.'" title="LinkedIn" target="_blank"><img src="./images/default/lin.gif" alt="'.__('Share this title to LinkedIn').'" /></a></li>'. '<li><a href="http://www.stumbleupon.com/submit?url='.$detail_url_encoded.'&title='.urlencode($title).'" title="Stumbleupon" target="_blank"><img src="./images/default/su.gif" alt="'.__('Share this title to StumbleUpon').'" /></a></li>'. '</ul>'."\n"; $output .= $_share_btns; } $output .= "</div></div>\n"; return $output; }