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


PHP NewsletterControls::value方法代码示例

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


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

示例1:

 
                    <?php 
_e('Since spam filters check links inside emails, <a href="http://www.thenewsletterplugin.com/plugins/newsletter/statistics-module#tracking-url" target="_blank">read more about this setting</a>.', 'newsletter-statistics');
?>
 
                </p>
            </td>
        </tr>
        <tr>
            <th><?php 
_e('Secret key', 'newsletter-statistics');
?>
</th>
            <td>
                <?php 
$controls->value('key');
?>
                <p class="description">
                    <?php 
_e('This auto-generated key is used to protect the click tracking. Shown for debug purposes.', 'newsletter-statistics');
?>
 
                </p>
            </td>
        </tr>        
    </table>
    <p>
        <?php 
$controls->button('save', __('Save', 'newsletter'));
?>
    </p>
开发者ID:lenguyenitc,项目名称:donations,代码行数:30,代码来源:index.php

示例2:

        <?php 
$nc->init();
?>
        <?php 
$nc->hidden('id');
?>
        <?php 
$nc->hidden('token');
?>

        <table class="form-table">
            <tr valign="top">
                <th>&nbsp;</th>
                <td>
                    id: <?php 
$nc->value('id');
?>
                    created: <?php 
$nc->value('created');
?>
                    ip: <?php 
$nc->value('ip');
?>
                    token: <?php 
$nc->value('token');
?>
                </td>
            </tr>
            <tr valign="top">
                <th>Name and email</th>
                <td>
开发者ID:rajveerbeniwal,项目名称:rooms-dhkh,代码行数:31,代码来源:users-edit.php


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