本文整理汇总了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;
}
}
示例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
}
?>
示例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
}
?>