• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP update_task_list函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中update_task_list函数的典型用法代码示例。如果您正苦于以下问题:PHP update_task_list函数的具体用法?PHP update_task_list怎么用?PHP update_task_list使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



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

示例1: update_check_requirements

/**
 * Check update requirements and report any errors.
 */
function update_check_requirements()
{
    // Check the system module and update.php requirements only.
    $requirements = module_invoke('system', 'requirements', 'update');
    $requirements += update_extra_requirements();
    $severity = drupal_requirements_severity($requirements);
    // If there are issues, report them.
    if ($severity == REQUIREMENT_ERROR) {
        update_task_list('requirements');
        drupal_set_title('Requirements problem');
        $status_report = theme('status_report', $requirements);
        $status_report .= 'Please check the error messages and <a href="' . request_uri() . '">try again</a>.';
        print theme('update_page', $status_report);
        exit;
    }
}
开发者ID:veggieryan,项目名称:drupal,代码行数:19,代码来源:update.php


示例2: update_check_requirements

/**
 * Check update requirements and report any errors.
 */
function update_check_requirements()
{
    // Check requirements of all loaded modules.
    $requirements = module_invoke_all('requirements', 'update');
    $requirements += update_extra_requirements();
    $severity = drupal_requirements_severity($requirements);
    // If there are issues, report them.
    if ($severity == REQUIREMENT_ERROR) {
        update_task_list('requirements');
        drupal_set_title('Requirements problem');
        $status_report = theme('status_report', array('requirements' => $requirements));
        $status_report .= 'Check the error messages and <a href="' . check_url(request_uri()) . '">try again</a>.';
        print theme('update_page', array('content' => $status_report));
        exit;
    }
}
开发者ID:boombatower,项目名称:drupal,代码行数:19,代码来源:update.php


示例3: update_check_requirements

/**
 * Checks update requirements and reports errors and (optionally) warnings.
 *
 * @param $skip_warnings
 *   (optional) If set to TRUE, requirement warnings will be ignored, and a
 *   report will only be issued if there are requirement errors. Defaults to
 *   FALSE.
 */
function update_check_requirements($skip_warnings = FALSE)
{
    // Check requirements of all loaded modules.
    $requirements = module_invoke_all('requirements', 'update');
    $requirements += update_extra_requirements();
    $severity = drupal_requirements_severity($requirements);
    // If there are errors, always display them. If there are only warnings, skip
    // them if the caller has indicated they should be skipped.
    if ($severity == REQUIREMENT_ERROR || $severity == REQUIREMENT_WARNING && !$skip_warnings) {
        update_task_list('requirements');
        drupal_set_title('Requirements problem');
        $status_report = theme('status_report', array('requirements' => $requirements));
        $status_report .= 'Check the error messages and <a href="' . check_url(drupal_requirements_url($severity)) . '">try again</a>.';
        print theme('update_page', array('content' => $status_report));
        exit;
    }
}
开发者ID:ludichrislyts,项目名称:fieldWork,代码行数:25,代码来源:update.php


示例4: update_info_page

function update_info_page()
{
    // Change query-strings on css/js files to enforce reload for all users.
    _drupal_flush_css_js();
    // Flush the cache of all data for the update status module.
    if (db_table_exists('cache_update')) {
        cache_clear_all('*', 'cache_update', TRUE);
    }
    update_task_list('info');
    drupal_set_title('Drupal database update');
    $token = drupal_get_token('update');
    $output = '<p>Use this utility to update your database whenever a new release of Drupal or a module is installed.</p><p>For more detailed information, see the <a href="http://drupal.org/upgrade">upgrading handbook</a>. If you are unsure what these terms mean you should probably contact your hosting provider.</p>';
    $output .= "<ol>\n";
    $output .= "<li><strong>Back up your database</strong>. This process will change your database values and in case of emergency you may need to revert to a backup.</li>\n";
    $output .= "<li><strong>Back up your code</strong>. Hint: when backing up module code, do not leave that backup in the 'modules' or 'sites/*/modules' directories as this may confuse Drupal's auto-discovery mechanism.</li>\n";
    $output .= '<li>Put your site into <a href="' . base_path() . '?q=admin/settings/site-maintenance">maintenance mode</a>.</li>' . "\n";
    $output .= "<li>Install your new files in the appropriate location, as described in the handbook.</li>\n";
    $output .= "</ol>\n";
    $output .= "<p>When you have performed the steps above, you may proceed.</p>\n";
    $output .= '<form method="post" action="update.php?op=selection&amp;token=' . $token . '"><p><input type="submit" value="Continue" /></p></form>';
    $output .= "\n";
    return $output;
}
开发者ID:c4rl,项目名称:6,代码行数:23,代码来源:update.php


示例5: drupal_current_script_url

                $redirect_url = $base_root . drupal_current_script_url(array('op' => 'results'));
                $output = update_batch($request->request->get('start'), $redirect_url, $batch_url);
                break;
            }
        case 'info':
            $regions['sidebar_first'] = update_task_list('info');
            $output = update_info_page();
            break;
        case 'results':
            $regions['sidebar_first'] = update_task_list();
            $output = update_results_page();
            break;
            // Regular batch ops : defer to batch processing API.
        // Regular batch ops : defer to batch processing API.
        default:
            $regions['sidebar_first'] = update_task_list('run');
            $output = _batch_page($request);
            break;
    }
} else {
    $output = update_access_denied_page();
}
if (isset($output) && $output) {
    // Explicitly start a session so that the update.php token will be accepted.
    \Drupal::service('session_manager')->start();
    // We defer the display of messages until all updates are done.
    $progress_page = ($batch = batch_get()) && isset($batch['running']);
    if ($output instanceof Response) {
        $output->send();
    } else {
        drupal_add_http_header('Content-Type', 'text/html; charset=utf-8');
开发者ID:anatalsceo,项目名称:en-classe,代码行数:31,代码来源:update.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP update_term_cache函数代码示例发布时间:2022-05-23
下一篇:
PHP update_subtype函数代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap