當前位置: 首頁>>代碼示例>>PHP>>正文


PHP TextHelper::cycle方法代碼示例

本文整理匯總了PHP中TextHelper::cycle方法的典型用法代碼示例。如果您正苦於以下問題:PHP TextHelper::cycle方法的具體用法?PHP TextHelper::cycle怎麽用?PHP TextHelper::cycle使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在TextHelper的用法示例。


在下文中一共展示了TextHelper::cycle方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: test_named_cycles

 function test_named_cycles()
 {
     $this->assertEqual('odd', TextHelper::cycle(array('odd', 'even', 'name' => '1st')));
     $this->assertEqual('red', TextHelper::cycle('red', 'black'));
     $this->assertEqual('even', TextHelper::cycle(array('odd', 'even', 'name' => '1st')));
     $this->assertEqual('black', TextHelper::cycle('red', 'black'));
 }
開發者ID:ratbird,項目名稱:hope,代碼行數:7,代碼來源:text_helper_test.php

示例2: _

  </tr>
  <tr class="<?php 
echo TextHelper::cycle('table_row_even', 'table_row_odd');
?>
">
  <td><?php 
echo _('Methode');
?>
</td>
  <td><input type="text" name="test_method" size="50" required value="<?php 
echo htmlReady(Request::get("test_method"));
?>
"></td>
  </tr>
  <tr class="<?php 
echo TextHelper::cycle('table_row_even', 'table_row_odd');
?>
">
  <td><?php 
echo _('IP Adresse');
?>
</td>
  <td><input type="text" name="test_ip" size="50" required value="<?php 
echo htmlReady(Request::get("test_ip"));
?>
"></td>
  </tr>
  <tr>
  <td style="text-align:center" colspan="2">
  <?php 
echo Button::createAccept(_('Abschicken'), 'ok', array('title' => _('Test starten')));
開發者ID:ratbird,項目名稱:hope,代碼行數:31,代碼來源:test.php

示例3: reset_cycle

 function reset_cycle($name)
 {
     TextHelper::cycle(array('reset' => $name));
 }
開發者ID:joeymetal,項目名稱:v1,代碼行數:4,代碼來源:text_helper.php

示例4: _

echo TextHelper::cycle('hover_odd', 'hover_even');
?>
">
            <td><?php 
echo _("Auf der Profilseite und in Adressbüchern sichtbar");
?>
:</td>
            <td><input type="checkbox" name="visible" value="1" <?php 
echo $institute['visible'] ? 'checked' : '';
?>
></td>
        </tr>
<? if (count($datafields) > 0) : ?>
    <? foreach ($datafields as $entry) : ?>
        <tr class="<?php 
echo TextHelper::cycle('hover_odd', 'hover_even');
?>
">
            <td>
                <?php 
echo htmlReady($entry->getName());
?>
:
            </td>
            <td>
            <? if ($entry->isEditable()) : ?>
                <?php 
echo $entry->getHTML("datafields");
?>
            <? else : ?>
                <?php 
開發者ID:ratbird,項目名稱:hope,代碼行數:31,代碼來源:edit_institute.php

示例5: _

</th>
            <th><?php 
echo _('Kontakt');
?>
</th>
            <th><?php 
echo _('Kommerziell');
?>
</th>
            <th>&nbsp;</th>
        </tr>
    </thead>
    <tbody>
<? foreach ($consumers as $consumer): ?>
        <tr class="<?php 
echo TextHelper::cycle('cycle_even', 'cycle_odd');
?>
">
            <td>
                <a href="<?php 
echo $controller->url_for('admin/toggle', $consumer['consumer_key'], $consumer['enabled'] ? 'off' : 'on');
?>
">
                    <?php 
echo Assets::img('icons/16/blue/checkbox-' . ($consumer['enabled'] ? '' : 'un') . 'checked');
?>
                </a>
            </td>
            <td>
            <? if ($consumer['application_uri']): ?>
                <a href="<?php 
開發者ID:noackorama,項目名稱:source-talk-2012,代碼行數:31,代碼來源:index.php


注:本文中的TextHelper::cycle方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。