403Webshell
Server IP : 195.130.67.5  /  Your IP : 216.73.217.154
Web Server : Microsoft-IIS/10.0
System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586
User : IUSR ( 0)
PHP Version : 7.4.19
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/inetpub/wwwroot/business/modules/simpletest/tests/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/inetpub/wwwroot/business/modules/simpletest/tests//update_script_test.install
<?php

/**
 * @file
 * Install, update and uninstall functions for the update_script_test module.
 */

/**
 * Implements hook_requirements().
 */
function update_script_test_requirements($phase) {
  $requirements = array();

  if ($phase == 'update') {
    // Set a requirements warning or error when the test requests it.
    $requirement_type = variable_get('update_script_test_requirement_type');
    switch ($requirement_type) {
      case REQUIREMENT_WARNING:
        $requirements['update_script_test'] = array(
          'title' => 'Update script test',
          'value' => 'Warning',
          'description' => 'This is a requirements warning provided by the update_script_test module.',
          'severity' => REQUIREMENT_WARNING,
        );
        break;
      case REQUIREMENT_ERROR:
        $requirements['update_script_test'] = array(
          'title' => 'Update script test',
          'value' => 'Error',
          'description' => 'This is a requirements error provided by the update_script_test module.',
          'severity' => REQUIREMENT_ERROR,
        );
        break;
      case REQUIREMENT_INFO:
        $requirements['update_script_test_stop'] = array(
          'title' => 'Update script test stop',
          'value' => 'Error',
          'description' => 'This is a requirements error provided by the update_script_test module to stop the page redirect for the info.',
          'severity' => REQUIREMENT_ERROR,
        );
        $requirements['update_script_test'] = array(
          'title' => 'Update script test',
          'description' => 'This is a requirements info provided by the update_script_test module.',
          'severity' => REQUIREMENT_INFO,
        );
        break;
    }
  }

  return $requirements;
}

/**
 * Dummy update function to run during the tests.
 */
function update_script_test_update_7000() {
  return t('The update_script_test_update_7000() update was executed successfully.');
}

Youez - 2016 - github.com/yon3zu
LinuXploit