当前位置: 首页>>代码示例>>PHP>>正文


PHP License::format方法代码示例

本文整理汇总了PHP中License::format方法的典型用法代码示例。如果您正苦于以下问题:PHP License::format方法的具体用法?PHP License::format怎么用?PHP License::format使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在License的用法示例。


在下文中一共展示了License::format方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: T_

</th>
            <th class="cel_description"><?php 
echo T_('Description');
?>
</th>
            <th class="cel_action"><?php 
echo T_('Action');
?>
</th>
        </tr>
    </thead>
    <tbody>
        <?php 
foreach ($object_ids as $license_id) {
    $libitem = new License($license_id);
    $libitem->format();
    require AmpConfig::get('prefix') . '/templates/show_license_row.inc.php';
    ?>
        <?php 
}
if (!count($object_ids)) {
    ?>
        <tr class="<?php 
    echo UI::flip_class();
    ?>
">
            <td colspan="6" class="error"><?php 
    echo T_('No Licenses Found');
    ?>
</td>
        </tr>
开发者ID:nioc,项目名称:ampache,代码行数:31,代码来源:show_manage_license.inc.php

示例2: date

    $songprops[gettext_noop('Filename')] = scrub_out($song->file) . " " . $song->f_size;
}
if ($song->update_time) {
    $songprops[gettext_noop('Last Updated')] = date("d/m/Y H:i", $song->update_time);
}
$songprops[gettext_noop('Added')] = date("d/m/Y H:i", $song->addition_time);
if (AmpConfig::get('show_played_times')) {
    $songprops[gettext_noop('# Played')] = scrub_out($song->object_cnt);
}
if (AmpConfig::get('show_lyrics')) {
    $songprops[gettext_noop('Lyrics')] = $song->f_lyrics;
}
if (AmpConfig::get('licensing')) {
    if ($song->license) {
        $license = new License($song->license);
        $license->format();
        $songprops[gettext_noop('Licensing')] = $license->f_link;
    }
}
$owner_id = $song->get_user_owner();
if (AmpConfig::get('sociable') && $owner_id > 0) {
    $owner = new User($owner_id);
    $owner->format();
    $songprops[gettext_noop('Uploaded by')] = $owner->f_link;
}
foreach ($songprops as $key => $value) {
    if (trim($value)) {
        $rowparity = UI::flip_class();
        echo "<dt class=\"" . $rowparity . "\">" . T_($key) . "</dt><dd class=\"" . $rowparity . "\">" . $value . "</dd>";
    }
}
开发者ID:cheese1,项目名称:ampache,代码行数:31,代码来源:show_song.inc.php


注:本文中的License::format方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。