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


PHP Channel::format方法代码示例

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


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

示例1: validate

 public function validate()
 {
     $value = RenegadeConstants::kChannelPrefix . '/' . Channel::format($this->form->{$this->key});
     $this->updateRequiredFlag($value);
     $db = Renegade::database();
     $response = $db->info(urlencode($value));
     if (isset($response['error']) && $response['error'] == 'not_found') {
         $this->isValid = true;
     }
 }
开发者ID:aventurella,项目名称:Galaxy,代码行数:10,代码来源:UniqueChannelValidator.php

示例2: T_

</th>
            <th class="cel_state optional"><?php 
echo T_('State');
?>
</th>
            <th class="cel_action essential"><?php 
echo T_('Actions');
?>
</th>
        </tr>
    </thead>
    <tbody>
        <?php 
foreach ($object_ids as $channel_id) {
    $channel = new Channel($channel_id);
    $channel->format();
    ?>
        <tr class="<?php 
    echo UI::flip_class();
    ?>
" id="channel_row_<?php 
    echo $channel->id;
    ?>
">
            <?php 
    require AmpConfig::get('prefix') . '/templates/show_channel_row.inc.php';
    ?>
        </tr>
        <?php 
}
?>
开发者ID:axelsimon,项目名称:ampache,代码行数:31,代码来源:show_channels.inc.php

示例3: T_

</th>
            <th class="cel_state optional"><?php 
echo T_('State');
?>
</th>
            <th class="cel_action essential"><?php 
echo T_('Actions');
?>
</th>
        </tr>
    </thead>
    <tbody>
        <?php 
foreach ($object_ids as $channel_id) {
    $libitem = new Channel($channel_id);
    $libitem->format();
    ?>
        <tr class="<?php 
    echo UI::flip_class();
    ?>
" id="channel_row_<?php 
    echo $libitem->id;
    ?>
">
            <?php 
    require AmpConfig::get('prefix') . '/templates/show_channel_row.inc.php';
    ?>
        </tr>
        <?php 
}
?>
开发者ID:nioc,项目名称:ampache,代码行数:31,代码来源:show_channels.inc.php


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