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


PHP FrmForm::set_status方法代码示例

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


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

示例1: change_form_status

 /**
  * @param string $status
  *
  * @return int The number of forms changed
  */
 public static function change_form_status($status)
 {
     $available_status = array('untrash' => array('permission' => 'frm_edit_forms', 'new_status' => 'published'), 'trash' => array('permission' => 'frm_delete_forms', 'new_status' => 'trash'));
     if (!isset($available_status[$status])) {
         return;
     }
     FrmAppHelper::permission_check($available_status[$status]['permission']);
     $params = FrmForm::list_page_params();
     //check nonce url
     check_admin_referer($status . '_form_' . $params['id']);
     $count = 0;
     if (FrmForm::set_status($params['id'], $available_status[$status]['new_status'])) {
         $count++;
     }
     $available_status['untrash']['message'] = sprintf(_n('%1$s form restored from the Trash.', '%1$s forms restored from the Trash.', $count, 'formidable'), $count);
     $available_status['trash']['message'] = sprintf(_n('%1$s form moved to the Trash. %2$sUndo%3$s', '%1$s forms moved to the Trash. %2$sUndo%3$s', $count, 'formidable'), $count, '<a href="' . esc_url(wp_nonce_url('?page=formidable&frm_action=untrash&form_type=' . (isset($_REQUEST['form_type']) ? sanitize_title($_REQUEST['form_type']) : '') . '&id=' . $params['id'], 'untrash_form_' . $params['id'])) . '">', '</a>');
     $message = $available_status[$status]['message'];
     self::display_forms_list($params, $message);
 }
开发者ID:swc-dng,项目名称:swcsandbox,代码行数:24,代码来源:FrmFormsController.php


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