Skip to content

Commit

Permalink
Added the item copy button to the list.
Browse files Browse the repository at this point in the history
  • Loading branch information
fukuchi committed Jan 16, 2020
1 parent 4d633b4 commit 818caff
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions application/view/omeka/admin/item/browse.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,10 @@ $sortHeadings = [
'class' => 'o-icon-edit',
'title' => $translate('Edit'),
]); ?></li>
<li><?php echo $item->link('', 'copy', [
'class' => 'o-icon-copy',
'title' => $translate('Copy'),
]); ?></li>
<?php endif; ?>
<?php if ($item->userIsAllowed('delete')): ?>
<li><?php echo $this->hyperlink('', '#', [
Expand Down

1 comment on commit 818caff

@fukuchi
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note: this patch assumes that you have already applied the following PR to enable the 'copy' icon.

Please sign in to comment.