當前位置: 首頁>>代碼示例>>PHP>>正文


PHP link_to_collection_for_item函數代碼示例

本文整理匯總了PHP中link_to_collection_for_item函數的典型用法代碼示例。如果您正苦於以下問題:PHP link_to_collection_for_item函數的具體用法?PHP link_to_collection_for_item怎麽用?PHP link_to_collection_for_item使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了link_to_collection_for_item函數的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: head

<?php

echo head(array('title' => metadata('item', array('Dublin Core', 'Title')), 'bodyclass' => 'items show'));
$collection = get_collection_for_item();
?>
<div id="primary">
<!--    <ul class="breadcrumb">
      <li><?php 
echo link_to_home_page();
?>
<span class="divider">/</span></li>
      <li><?php 
echo link_to_collection_for_item($collection->name, array('id' => 'item-collection-link'));
?>
<span class="divider">/</span></li>
      <li class="active"><?php 
echo metadata('item', array('Dublin Core', 'Title'));
?>
</li>
    </ul>
-->
    <h1><?php 
echo metadata('item', array('Item Type Metadata', 'Título'));
?>
</h1>

    <!-- The following returns all of the files associated with an item. -->
   <!-- <div id="itemfiles" class="element">-->
<div>
       <!-- <div class="element-text">-->
<div>
開發者ID:HCDigitalScholarship,項目名稱:ticha-scribe,代碼行數:31,代碼來源:show.php

示例2: files_for_item

    <div id="item-images">
         <?php 
echo files_for_item();
?>
    </div>

   <?php 
if (metadata('item', 'Collection Name')) {
    ?>
      <div id="collection" class="element">
        <h3><?php 
    echo __('Collection');
    ?>
</h3>
        <div class="element-text"><p><?php 
    echo link_to_collection_for_item();
    ?>
</p></div>
      </div>
   <?php 
}
?>

     <!-- The following prints a list of all tags associated with the item -->
    <?php 
if (metadata('item', 'has tags')) {
    ?>
    <div id="item-tags" class="element">
        <h3><?php 
    echo __('Tags');
    ?>
開發者ID:AdrienneSerra,項目名稱:Digitalsc,代碼行數:31,代碼來源:show_orig.php

示例3: set_current_record

    });


    <?php 
}
// end canProtect()
?>

});
</script>

<?php 
$page_id = $this->doc->getId();
set_current_record('item', get_record_by_id('item', $page_id));
$collection = get_collection_for_item();
$collection_link = link_to_collection_for_item();
if (strpos($this->file['original_filename'], "/full/full/0/default.jpg")) {
    $iiif_id = str_replace("/full/full/0/default.jpg", "", $this->file['original_filename']);
} else {
    $iiif_id = str_replace("/full/90,/0/default.jpg", "", $this->file['original_filename']);
}
?>

<?php 
$base_Dir = basename(getcwd());
?>

<?php 
if (!is_admin_theme()) {
    ?>
開發者ID:pulibrary,項目名稱:Scribe,代碼行數:30,代碼來源:transcribe.php


注:本文中的link_to_collection_for_item函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。