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


PHP FrmAppHelper::update_message方法代码示例

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


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

示例1: add_conditional_update_msg

 public static function add_conditional_update_msg()
 {
     echo '<tr><td colspan="2">';
     FrmAppHelper::update_message('calculate and conditionally hide and show fields');
     echo '</td></tr>';
 }
开发者ID:EyesX,项目名称:formidable-forms,代码行数:6,代码来源:FrmFieldsController.php

示例2: duplicate

 public static function duplicate()
 {
     FrmAppHelper::update_message(__('duplicate styling templates', 'formidable'), 'wrap');
     self::load_styler('default');
 }
开发者ID:swc-dng,项目名称:swcsandbox,代码行数:5,代码来源:FrmStylesController.php

示例3: update_message

 public static function update_message($features)
 {
     _deprecated_function(__FUNCTION__, '2.0', 'FrmAppHelper::update_message');
     return FrmAppHelper::update_message($features);
 }
开发者ID:rbkhrlstn,项目名称:formidable-forms,代码行数:5,代码来源:FrmAppController.php

示例4: new_style

 public static function new_style($return = '')
 {
     FrmAppHelper::update_message(__('create multiple styling templates', 'formidable'), 'wrap');
     self::load_styler('default');
 }
开发者ID:baden03,项目名称:access48,代码行数:5,代码来源:FrmStylesController.php

示例5: _e

<div id="form_views_page" class="wrap">
    <div class="frmicon icon32"><br/></div>
    <h2>
        <?php 
_e('Views', 'formidable');
?>
        <a href="#" class="add-new-h2 frm_invisible"><?php 
_e('Add New', 'formidable');
?>
</a>
    </h2>

<?php 
if ($form) {
    FrmAppController::get_form_nav($form);
}
require FrmAppHelper::plugin_path() . '/classes/views/shared/errors.php';
FrmAppHelper::update_message(__('display collected data in lists, calendars, and other formats', 'formidable'));
?>

    <img class="frm_no_views" src="http://fp.strategy11.com/images/custom-display-settings.png" alt="Display"/>
</div>
开发者ID:mazykin46,项目名称:portfolio,代码行数:22,代码来源:list_displays.php

示例6: esc_attr

        echo esc_attr($skey);
        ?>
][/if 125"><?php 
        echo esc_html($sname);
        ?>
</a>
	    </li>
	    <?php 
        $col = $col == 'one' ? 'two' : 'one';
        unset($skey, $sname);
    }
    ?>
        </ul>
    <?php 
} else {
    FrmAppHelper::update_message('use inline conditional logic');
}
?>
	</div>

	<div id="frm-adv-info-tab" class="tabs-panel">
		<ul class="frm_code_list">
        <?php 
$col = 'one';
foreach ($adv_shortcodes as $skey => $sname) {
    ?>
	    <li class="frm_col_<?php 
    echo esc_attr($col);
    ?>
">
	        <a href="javascript:void(0)" class="frmbutton button frm_insert_code <?php 
开发者ID:mazykin46,项目名称:portfolio,代码行数:31,代码来源:mb_adv_info.php

示例7: _e

<div id="form_reports_page" class="wrap">
    <div class="frmicon icon32"><br/></div>
    <h2>
		<?php 
_e('Reports', 'formidable');
?>
		<a href="#" class="add-new-h2 frm_invisible"><?php 
_e('Add New', 'formidable');
?>
</a>
	</h2>

<?php 
if ($form) {
    FrmAppController::get_form_nav($form, true);
}
require FrmAppHelper::plugin_path() . '/classes/views/shared/errors.php';
FrmAppHelper::update_message(__('view reports and statistics on your saved entries', 'formidable'));
?>

    <img class="frm_no_reports" src="http://fp.strategy11.com/wp-content/themes/formidablepro/images/reports1.png" alt="Reports"/>
</div>
开发者ID:mazykin46,项目名称:portfolio,代码行数:22,代码来源:list.php

示例8: checked

" value="1" <?php 
checked($form_action->post_content['inc_user_info'], 1);
?>
 /> <?php 
_e('Append IP Address, Browser, and Referring URL to message', 'formidable');
?>
</label>

        <p><label for="<?php 
echo esc_attr($this->get_field_id('plain_text'));
?>
"><input type="checkbox" name="<?php 
echo esc_attr($this->get_field_name('plain_text'));
?>
" id="<?php 
echo esc_attr($this->get_field_id('plain_text'));
?>
" value="1" <?php 
checked($form_action->post_content['plain_text'], 1);
?>
 /> <?php 
_e('Send Emails in Plain Text', 'formidable');
?>
</label></p>
        <?php 
FrmAppHelper::update_message('conditionally send email notifications');
?>
    </td>
</tr>
</table>
开发者ID:mazykin46,项目名称:portfolio,代码行数:30,代码来源:_email_settings.php


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