</th>
            <th class="cel_public_url essential"><?php 
echo T_('Public Url');
?>
</th>
            <th class="cel_action  essential"><?php 
echo T_('Actions');
?>
</th>
        </tr>
    </thead>
    <tbody>
    <?php 
foreach ($object_ids as $share_id) {
    $libitem = new Share($share_id);
    $libitem->format();
    ?>
    <tr id="share_<?php 
    echo $libitem->id;
    ?>
" class="<?php 
    echo UI::flip_class();
    ?>
">
        <?php 
    require AmpConfig::get('prefix') . UI::find_template('show_share_row.inc.php');
    ?>
    </tr>
    <?php 
}
?>
</th>
            <th class="cel_public_url essential"><?php 
echo T_('Public Url');
?>
</th>
            <th class="cel_action  essential"><?php 
echo T_('Actions');
?>
</th>
        </tr>
    </thead>
    <tbody>
    <?php 
foreach ($object_ids as $share_id) {
    $share = new Share($share_id);
    $share->format();
    ?>
    <tr id="share_<?php 
    echo $share->id;
    ?>
" class="<?php 
    echo UI::flip_class();
    ?>
">
        <?php 
    require AmpConfig::get('prefix') . '/templates/show_shared_object_row.inc.php';
    ?>
    </tr>
    <?php 
}
?>