123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320 |
- <?php
- define('SCHEMA_UNINSTALLED', -1);
- define('SCHEMA_INSTALLED', 0);
- define('REQUIREMENT_INFO', -1);
- define('REQUIREMENT_OK', 0);
- define('REQUIREMENT_WARNING', 1);
- define('REQUIREMENT_ERROR', 2);
- define('FILE_EXIST', 1);
- define('FILE_READABLE', 2);
- define('FILE_WRITABLE', 4);
- define('FILE_EXECUTABLE', 8);
- define('FILE_NOT_EXIST', 16);
- define('FILE_NOT_READABLE', 32);
- define('FILE_NOT_WRITABLE', 64);
- define('FILE_NOT_EXECUTABLE', 128);
- function drupal_load_updates() {
- foreach (drupal_get_installed_schema_version(NULL, FALSE, TRUE) as $module => $schema_version) {
- if ($schema_version > -1) {
- module_load_install($module);
- }
- }
- }
- function drupal_get_schema_versions($module) {
- $updates = &drupal_static(__FUNCTION__, NULL);
- if (!isset($updates[$module])) {
- $updates = array();
- foreach (module_list() as $loaded_module) {
- $updates[$loaded_module] = array();
- }
-
- $regexp = '/^(?P<module>.+)_update_(?P<version>\d+)$/';
- $functions = get_defined_functions();
-
-
-
-
-
-
-
- foreach (preg_grep('/_\d+$/', $functions['user']) as $function) {
-
-
- if (preg_match($regexp, $function, $matches)) {
- $updates[$matches['module']][] = $matches['version'];
- }
- }
-
- foreach ($updates as &$module_updates) {
- sort($module_updates, SORT_NUMERIC);
- }
- }
- return empty($updates[$module]) ? FALSE : $updates[$module];
- }
- function drupal_get_installed_schema_version($module, $reset = FALSE, $array = FALSE) {
- static $versions = array();
- if ($reset) {
- $versions = array();
- }
- if (!$versions) {
- $versions = array();
- $result = db_query("SELECT name, schema_version FROM {system} WHERE type = :type", array(':type' => 'module'));
- foreach ($result as $row) {
- $versions[$row->name] = $row->schema_version;
- }
- }
- if ($array) {
- return $versions;
- }
- else {
- return isset($versions[$module]) ? $versions[$module] : SCHEMA_UNINSTALLED;
- }
- }
- function drupal_set_installed_schema_version($module, $version) {
- db_update('system')
- ->fields(array('schema_version' => $version))
- ->condition('name', $module)
- ->execute();
-
- drupal_get_installed_schema_version(NULL, TRUE);
- }
- function drupal_install_profile_distribution_name() {
-
-
- if (drupal_installation_attempted()) {
- global $install_state;
- return $install_state['profile_info']['distribution_name'];
- }
-
- else {
- $profile = drupal_get_profile();
- $info = system_get_info('module', $profile);
- return $info['distribution_name'];
- }
- }
- function drupal_detect_baseurl($file = 'install.php') {
- $proto = $_SERVER['HTTPS'] ? 'https://' : 'http://';
- $host = $_SERVER['SERVER_NAME'];
- $port = ($_SERVER['SERVER_PORT'] == 80 ? '' : ':' . $_SERVER['SERVER_PORT']);
- $uri = preg_replace("/\?.*/", '', $_SERVER['REQUEST_URI']);
- $dir = str_replace("/$file", '', $uri);
- return "$proto$host$port$dir";
- }
- function drupal_detect_database_types() {
- $databases = drupal_get_database_types();
- foreach ($databases as $driver => $installer) {
- $databases[$driver] = $installer->name();
- }
- return $databases;
- }
- function drupal_get_database_types() {
- $databases = array();
-
-
-
-
-
- require_once DRUPAL_ROOT . '/includes/database/database.inc';
- foreach (file_scan_directory(DRUPAL_ROOT . '/includes/database', '/^[a-z]*$/i', array('recurse' => FALSE)) as $file) {
- if (file_exists($file->uri . '/database.inc') && file_exists($file->uri . '/install.inc')) {
- $drivers[$file->filename] = $file->uri;
- }
- }
- foreach ($drivers as $driver => $file) {
- $installer = db_installer_object($driver);
- if ($installer->installable()) {
- $databases[$driver] = $installer;
- }
- }
-
- if (isset($databases['mysql'])) {
- $mysql_database = $databases['mysql'];
- unset($databases['mysql']);
- $databases = array('mysql' => $mysql_database) + $databases;
- }
- return $databases;
- }
- abstract class DatabaseTasks {
-
- protected $tasks = array(
- array(
- 'function' => 'checkEngineVersion',
- 'arguments' => array(),
- ),
- array(
- 'arguments' => array(
- 'CREATE TABLE {drupal_install_test} (id int NULL)',
- 'Drupal can use CREATE TABLE database commands.',
- 'Failed to <strong>CREATE</strong> a test table on your database server with the command %query. The server reports the following message: %error.<p>Are you sure the configured username has the necessary permissions to create tables in the database?</p>',
- TRUE,
- ),
- ),
- array(
- 'arguments' => array(
- 'INSERT INTO {drupal_install_test} (id) VALUES (1)',
- 'Drupal can use INSERT database commands.',
- 'Failed to <strong>INSERT</strong> a value into a test table on your database server. We tried inserting a value with the command %query and the server reported the following error: %error.',
- ),
- ),
- array(
- 'arguments' => array(
- 'UPDATE {drupal_install_test} SET id = 2',
- 'Drupal can use UPDATE database commands.',
- 'Failed to <strong>UPDATE</strong> a value in a test table on your database server. We tried updating a value with the command %query and the server reported the following error: %error.',
- ),
- ),
- array(
- 'arguments' => array(
- 'DELETE FROM {drupal_install_test}',
- 'Drupal can use DELETE database commands.',
- 'Failed to <strong>DELETE</strong> a value from a test table on your database server. We tried deleting a value with the command %query and the server reported the following error: %error.',
- ),
- ),
- array(
- 'arguments' => array(
- 'DROP TABLE {drupal_install_test}',
- 'Drupal can use DROP TABLE database commands.',
- 'Failed to <strong>DROP</strong> a test table from your database server. We tried dropping a table with the command %query and the server reported the following error %error.',
- ),
- ),
- );
-
- protected $results = array();
-
- protected function hasPdoDriver() {
- return in_array($this->pdoDriver, PDO::getAvailableDrivers());
- }
-
- protected function fail($message) {
- $this->results[$message] = FALSE;
- }
-
- protected function pass($message) {
- $this->results[$message] = TRUE;
- }
-
- public function installable() {
- return $this->hasPdoDriver() && empty($this->error);
- }
-
- abstract public function name();
-
- public function minimumVersion() {
- return NULL;
- }
-
- public function runTasks() {
-
- if ($this->connect()) {
- foreach ($this->tasks as $task) {
- if (!isset($task['function'])) {
- $task['function'] = 'runTestQuery';
- }
- if (method_exists($this, $task['function'])) {
-
- if (FALSE === call_user_func_array(array($this, $task['function']), $task['arguments'])) {
- break;
- }
- }
- else {
- throw new DatabaseTaskException(st("Failed to run all tasks against the database server. The task %task wasn't found.", array('%task' => $task['function'])));
- }
- }
- }
-
- $message = '';
- foreach ($this->results as $result => $success) {
- if (!$success) {
- $message .= '<p class="error">' . $result . '</p>';
- }
- }
- if (!empty($message)) {
- $message = '<p>In order for Drupal to work, and to continue with the installation process, you must resolve all issues reported below. For more help with configuring your database server, see the <a href="http://drupal.org/getting-started/install">installation handbook</a>. If you are unsure what any of this means you should probably contact your hosting provider.</p>' . $message;
- throw new DatabaseTaskException($message);
- }
- }
-
- protected function connect() {
- try {
-
- db_set_active();
-
- Database::getConnection();
- $this->pass('Drupal can CONNECT to the database ok.');
- }
- catch (Exception $e) {
- $this->fail(st('Failed to connect to your database server. The server reports the following message: %error.<ul><li>Is the database server running?</li><li>Does the database exist, and have you entered the correct database name?</li><li>Have you entered the correct username and password?</li><li>Have you entered the correct database hostname?</li></ul>', array('%error' => $e->getMessage())));
- return FALSE;
- }
- return TRUE;
- }
-
- protected function runTestQuery($query, $pass, $fail, $fatal = FALSE) {
- try {
- db_query($query);
- $this->pass(st($pass));
- }
- catch (Exception $e) {
- $this->fail(st($fail, array('%query' => $query, '%error' => $e->getMessage(), '%name' => $this->name())));
- return !$fatal;
- }
- }
-
- protected function checkEngineVersion() {
- if ($this->minimumVersion() && version_compare(Database::getConnection()->version(), $this->minimumVersion(), '<')) {
- $this->fail(st("The database version %version is less than the minimum required version %minimum_version.", array('%version' => Database::getConnection()->version(), '%minimum_version' => $this->minimumVersion())));
- }
- }
-
- public function getFormOptions($database) {
- $form['database'] = array(
- '#type' => 'textfield',
- '#title' => st('Database name'),
- '#default_value' => empty($database['database']) ? '' : $database['database'],
- '#size' => 45,
- '#required' => TRUE,
- '#description' => st('The name of the database your @drupal data will be stored in. It must exist on your server before @drupal can be installed.', array('@drupal' => drupal_install_profile_distribution_name())),
- );
- $form['username'] = array(
- '#type' => 'textfield',
- '#title' => st('Database username'),
- '#default_value' => empty($database['username']) ? '' : $database['username'],
- '#required' => TRUE,
- '#size' => 45,
- );
- $form['password'] = array(
- '#type' => 'password',
- '#title' => st('Database password'),
- '#default_value' => empty($database['password']) ? '' : $database['password'],
- '#required' => FALSE,
- '#size' => 45,
- );
- $form['advanced_options'] = array(
- '#type' => 'fieldset',
- '#title' => st('Advanced options'),
- '#collapsible' => TRUE,
- '#collapsed' => TRUE,
- '#description' => st("These options are only necessary for some sites. If you're not sure what you should enter here, leave the default settings or check with your hosting provider."),
- '#weight' => 10,
- );
- $profile = drupal_get_profile();
- $db_prefix = ($profile == 'standard') ? 'drupal_' : $profile . '_';
- $form['advanced_options']['db_prefix'] = array(
- '#type' => 'textfield',
- '#title' => st('Table prefix'),
- '#default_value' => '',
- '#size' => 45,
- '#description' => st('If more than one application will be sharing this database, enter a table prefix such as %prefix for your @drupal site here.', array('@drupal' => drupal_install_profile_distribution_name(), '%prefix' => $db_prefix)),
- '#weight' => 10,
- );
- $form['advanced_options']['host'] = array(
- '#type' => 'textfield',
- '#title' => st('Database host'),
- '#default_value' => empty($database['host']) ? 'localhost' : $database['host'],
- '#size' => 45,
-
- '#maxlength' => 255,
- '#required' => TRUE,
- '#description' => st('If your database is located on a different server, change this.'),
- );
- $form['advanced_options']['port'] = array(
- '#type' => 'textfield',
- '#title' => st('Database port'),
- '#default_value' => empty($database['port']) ? '' : $database['port'],
- '#size' => 45,
-
- '#maxlength' => 5,
- '#description' => st('If your database server is listening to a non-standard port, enter its number.'),
- );
- return $form;
- }
-
- public function validateDatabaseSettings($database) {
- $errors = array();
-
- if (!empty($database['prefix']) && is_string($database['prefix']) && !preg_match('/^[A-Za-z0-9_.]+$/', $database['prefix'])) {
- $errors[$database['driver'] . '][advanced_options][db_prefix'] = st('The database table prefix you have entered, %prefix, is invalid. The table prefix can only contain alphanumeric characters, periods, or underscores.', array('%prefix' => $database['prefix']));
- }
-
- if (!empty($database['port']) && !is_numeric($database['port'])) {
- $errors[$database['driver'] . '][advanced_options][port'] = st('Database port must be a number.');
- }
- return $errors;
- }
- }
- class DatabaseTaskException extends Exception {
- }
- function drupal_rewrite_settings($settings = array(), $prefix = '') {
- $default_settings = 'sites/default/default.settings.php';
- drupal_static_reset('conf_path');
- $settings_file = conf_path(FALSE) . '/' . $prefix . 'settings.php';
-
- $keys = array();
- foreach ($settings as $setting => $data) {
- $GLOBALS[$setting] = $data['value'];
- $keys[] = $setting;
- }
- $buffer = NULL;
- $first = TRUE;
- if ($fp = fopen(DRUPAL_ROOT . '/' . $default_settings, 'r')) {
-
- while (!feof($fp)) {
- $line = fgets($fp);
- if ($first && substr($line, 0, 5) != '<?php') {
- $buffer = "<?php\n\n";
- }
- $first = FALSE;
-
- if (substr($line, 0, 7) == 'define(') {
- preg_match('/define\(\s*[\'"]([A-Z_-]+)[\'"]\s*,(.*?)\);/', $line, $variable);
- if (in_array($variable[1], $keys)) {
- $setting = $settings[$variable[1]];
- $buffer .= str_replace($variable[2], " '" . $setting['value'] . "'", $line);
- unset($settings[$variable[1]]);
- unset($settings[$variable[2]]);
- }
- else {
- $buffer .= $line;
- }
- }
-
- elseif (substr($line, 0, 1) == '$') {
- preg_match('/\$([^ ]*) /', $line, $variable);
- if (in_array($variable[1], $keys)) {
-
-
- $setting = $settings[$variable[1]];
- $buffer .= '$' . $variable[1] . " = " . var_export($setting['value'], TRUE) . ";" . (!empty($setting['comment']) ? ' // ' . $setting['comment'] . "\n" : "\n");
- unset($settings[$variable[1]]);
- }
- else {
- $buffer .= $line;
- }
- }
- else {
- $buffer .= $line;
- }
- }
- fclose($fp);
-
- foreach ($settings as $setting => $data) {
- if ($data['required']) {
- $buffer .= "\$$setting = " . var_export($data['value'], TRUE) . ";\n";
- }
- }
- $fp = fopen(DRUPAL_ROOT . '/' . $settings_file, 'w');
- if ($fp && fwrite($fp, $buffer) === FALSE) {
- throw new Exception(st('Failed to modify %settings. Verify the file permissions.', array('%settings' => $settings_file)));
- }
- }
- else {
- throw new Exception(st('Failed to open %settings. Verify the file permissions.', array('%settings' => $default_settings)));
- }
- }
- function drupal_verify_profile($install_state) {
- $profile = $install_state['parameters']['profile'];
- $locale = $install_state['parameters']['locale'];
- include_once DRUPAL_ROOT . '/includes/file.inc';
- include_once DRUPAL_ROOT . '/includes/common.inc';
- $profile_file = DRUPAL_ROOT . "/profiles/$profile/$profile.profile";
- if (!isset($profile) || !file_exists($profile_file)) {
- throw new Exception(install_no_profile_error());
- }
- $info = $install_state['profile_info'];
-
- $present_modules = array();
- foreach (drupal_system_listing('/^' . DRUPAL_PHP_FUNCTION_PATTERN . '\.module$/', 'modules', 'name', 0) as $present_module) {
- $present_modules[] = $present_module->name;
- }
-
-
- $present_modules[] = drupal_get_profile();
-
- $missing_modules = array_diff($info['dependencies'], $present_modules);
- $requirements = array();
- if (count($missing_modules)) {
- $modules = array();
- foreach ($missing_modules as $module) {
- $modules[] = '<span class="admin-missing">' . drupal_ucfirst($module) . '</span>';
- }
- $requirements['required_modules'] = array(
- 'title' => st('Required modules'),
- 'value' => st('Required modules not found.'),
- 'severity' => REQUIREMENT_ERROR,
- 'description' => st('The following modules are required but were not found. Move them into the appropriate modules subdirectory, such as <em>sites/all/modules</em>. Missing modules: !modules', array('!modules' => implode(', ', $modules))),
- );
- }
- return $requirements;
- }
- function drupal_install_system() {
- $system_path = drupal_get_path('module', 'system');
- require_once DRUPAL_ROOT . '/' . $system_path . '/system.install';
- module_invoke('system', 'install');
- $system_versions = drupal_get_schema_versions('system');
- $system_version = $system_versions ? max($system_versions) : SCHEMA_INSTALLED;
- db_insert('system')
- ->fields(array('filename', 'name', 'type', 'owner', 'status', 'schema_version', 'bootstrap'))
- ->values(array(
- 'filename' => $system_path . '/system.module',
- 'name' => 'system',
- 'type' => 'module',
- 'owner' => '',
- 'status' => 1,
- 'schema_version' => $system_version,
- 'bootstrap' => 0,
- ))
- ->execute();
- system_rebuild_module_data();
- }
- function drupal_uninstall_modules($module_list = array(), $uninstall_dependents = TRUE) {
- if ($uninstall_dependents) {
-
- $module_data = system_rebuild_module_data();
-
- $module_list = array_flip(array_values($module_list));
- $profile = drupal_get_profile();
- while (list($module) = each($module_list)) {
- if (!isset($module_data[$module]) || drupal_get_installed_schema_version($module) == SCHEMA_UNINSTALLED) {
-
- unset($module_list[$module]);
- continue;
- }
- $module_list[$module] = $module_data[$module]->sort;
-
-
-
-
- foreach (array_keys($module_data[$module]->required_by) as $dependent) {
- if (!isset($module_list[$dependent]) && drupal_get_installed_schema_version($dependent) != SCHEMA_UNINSTALLED && $dependent != $profile) {
- return FALSE;
- }
- }
- }
-
- asort($module_list);
- $module_list = array_keys($module_list);
- }
- foreach ($module_list as $module) {
-
- module_load_install($module);
- module_invoke($module, 'uninstall');
- drupal_uninstall_schema($module);
- watchdog('system', '%module module uninstalled.', array('%module' => $module), WATCHDOG_INFO);
- drupal_set_installed_schema_version($module, SCHEMA_UNINSTALLED);
- }
- if (!empty($module_list)) {
-
- module_invoke_all('modules_uninstalled', $module_list);
- }
- return TRUE;
- }
- function drupal_verify_install_file($file, $mask = NULL, $type = 'file') {
- $return = TRUE;
-
- if (isset($mask) && ($mask & FILE_NOT_EXIST) && file_exists($file)) {
- return FALSE;
- }
-
- if (isset($type) && file_exists($file)) {
- $check = 'is_' . $type;
- if (!function_exists($check) || !$check($file)) {
- $return = FALSE;
- }
- }
-
- if (isset($mask)) {
- $masks = array(FILE_EXIST, FILE_READABLE, FILE_WRITABLE, FILE_EXECUTABLE, FILE_NOT_READABLE, FILE_NOT_WRITABLE, FILE_NOT_EXECUTABLE);
- foreach ($masks as $current_mask) {
- if ($mask & $current_mask) {
- switch ($current_mask) {
- case FILE_EXIST:
- if (!file_exists($file)) {
- if ($type == 'dir') {
- drupal_install_mkdir($file, $mask);
- }
- if (!file_exists($file)) {
- $return = FALSE;
- }
- }
- break;
- case FILE_READABLE:
- if (!is_readable($file) && !drupal_install_fix_file($file, $mask)) {
- $return = FALSE;
- }
- break;
- case FILE_WRITABLE:
- if (!is_writable($file) && !drupal_install_fix_file($file, $mask)) {
- $return = FALSE;
- }
- break;
- case FILE_EXECUTABLE:
- if (!is_executable($file) && !drupal_install_fix_file($file, $mask)) {
- $return = FALSE;
- }
- break;
- case FILE_NOT_READABLE:
- if (is_readable($file) && !drupal_install_fix_file($file, $mask)) {
- $return = FALSE;
- }
- break;
- case FILE_NOT_WRITABLE:
- if (is_writable($file) && !drupal_install_fix_file($file, $mask)) {
- $return = FALSE;
- }
- break;
- case FILE_NOT_EXECUTABLE:
- if (is_executable($file) && !drupal_install_fix_file($file, $mask)) {
- $return = FALSE;
- }
- break;
- }
- }
- }
- }
- return $return;
- }
- function drupal_install_mkdir($file, $mask, $message = TRUE) {
- $mod = 0;
- $masks = array(FILE_READABLE, FILE_WRITABLE, FILE_EXECUTABLE, FILE_NOT_READABLE, FILE_NOT_WRITABLE, FILE_NOT_EXECUTABLE);
- foreach ($masks as $m) {
- if ($mask & $m) {
- switch ($m) {
- case FILE_READABLE:
- $mod |= 0444;
- break;
- case FILE_WRITABLE:
- $mod |= 0222;
- break;
- case FILE_EXECUTABLE:
- $mod |= 0111;
- break;
- }
- }
- }
- if (@drupal_mkdir($file, $mod)) {
- return TRUE;
- }
- else {
- return FALSE;
- }
- }
- function drupal_install_fix_file($file, $mask, $message = TRUE) {
-
- if (!file_exists($file)) {
- return FALSE;
- }
- $mod = fileperms($file) & 0777;
- $masks = array(FILE_READABLE, FILE_WRITABLE, FILE_EXECUTABLE, FILE_NOT_READABLE, FILE_NOT_WRITABLE, FILE_NOT_EXECUTABLE);
-
-
-
-
- foreach ($masks as $m) {
- if ($mask & $m) {
- switch ($m) {
- case FILE_READABLE:
- if (!is_readable($file)) {
- $mod |= 0444;
- }
- break;
- case FILE_WRITABLE:
- if (!is_writable($file)) {
- $mod |= 0222;
- }
- break;
- case FILE_EXECUTABLE:
- if (!is_executable($file)) {
- $mod |= 0111;
- }
- break;
- case FILE_NOT_READABLE:
- if (is_readable($file)) {
- $mod &= ~0444;
- }
- break;
- case FILE_NOT_WRITABLE:
- if (is_writable($file)) {
- $mod &= ~0222;
- }
- break;
- case FILE_NOT_EXECUTABLE:
- if (is_executable($file)) {
- $mod &= ~0111;
- }
- break;
- }
- }
- }
-
-
-
- if (@chmod($file, $mod)) {
- return TRUE;
- }
- else {
- return FALSE;
- }
- }
- function install_goto($path) {
- global $base_url;
- include_once DRUPAL_ROOT . '/includes/common.inc';
- header('Location: ' . $base_url . '/' . $path);
- header('Cache-Control: no-cache');
- drupal_exit();
- }
- function drupal_current_script_url($query = array()) {
- $uri = $_SERVER['SCRIPT_NAME'];
- $query = array_merge(drupal_get_query_parameters(), $query);
- if (!empty($query)) {
- $uri .= '?' . drupal_http_build_query($query);
- }
- return $uri;
- }
- function drupal_requirements_url($severity) {
- $query = array();
-
-
- if ($severity == REQUIREMENT_WARNING) {
- $query['continue'] = 1;
- }
- return drupal_current_script_url($query);
- }
- function st($string, array $args = array(), array $options = array()) {
- static $locale_strings = NULL;
- global $install_state;
- if (empty($options['context'])) {
- $options['context'] = '';
- }
- if (!isset($locale_strings)) {
- $locale_strings = array();
- if (isset($install_state['parameters']['profile']) && isset($install_state['parameters']['locale'])) {
-
-
-
-
- $po_files = file_scan_directory('./profiles/' . $install_state['parameters']['profile'] . '/translations', '/'. $install_state['parameters']['locale'] .'\.po$/', array('recurse' => FALSE));
- if (count($po_files)) {
- require_once DRUPAL_ROOT . '/includes/locale.inc';
- foreach ($po_files as $po_file) {
- _locale_import_read_po('mem-store', $po_file);
- }
- $locale_strings = _locale_import_one_string('mem-report');
- }
- }
- }
- require_once DRUPAL_ROOT . '/includes/theme.inc';
-
- foreach ($args as $key => $value) {
- switch ($key[0]) {
-
- case '@':
- $args[$key] = check_plain($value);
- break;
-
- case '%':
- default:
- $args[$key] = '<em>' . check_plain($value) . '</em>';
- break;
-
- case '!':
- }
- }
- return strtr((!empty($locale_strings[$options['context']][$string]) ? $locale_strings[$options['context']][$string] : $string), $args);
- }
- function drupal_check_profile($profile) {
- include_once DRUPAL_ROOT . '/includes/file.inc';
- $profile_file = DRUPAL_ROOT . "/profiles/$profile/$profile.profile";
- if (!isset($profile) || !file_exists($profile_file)) {
- throw new Exception(install_no_profile_error());
- }
- $info = install_profile_info($profile);
-
- $requirements = array();
- foreach ($info['dependencies'] as $module) {
- module_load_install($module);
- $function = $module . '_requirements';
- if (function_exists($function)) {
- $requirements = array_merge($requirements, $function('install'));
- }
- }
- return $requirements;
- }
- function drupal_requirements_severity(&$requirements) {
- $severity = REQUIREMENT_OK;
- foreach ($requirements as $requirement) {
- if (isset($requirement['severity'])) {
- $severity = max($severity, $requirement['severity']);
- }
- }
- return $severity;
- }
- function drupal_check_module($module) {
- module_load_install($module);
- if (module_hook($module, 'requirements')) {
-
- $requirements = module_invoke($module, 'requirements', 'install');
- if (is_array($requirements) && drupal_requirements_severity($requirements) == REQUIREMENT_ERROR) {
-
- foreach ($requirements as $requirement) {
- if (isset($requirement['severity']) && $requirement['severity'] == REQUIREMENT_ERROR) {
- $message = $requirement['description'];
- if (isset($requirement['value']) && $requirement['value']) {
- $message .= ' (' . t('Currently using !item !version', array('!item' => $requirement['title'], '!version' => $requirement['value'])) . ')';
- }
- drupal_set_message($message, 'error');
- }
- }
- return FALSE;
- }
- }
- return TRUE;
- }
- function install_profile_info($profile, $locale = 'en') {
- $cache = &drupal_static(__FUNCTION__, array());
- if (!isset($cache[$profile])) {
-
- $defaults = array(
- 'dependencies' => array(),
- 'description' => '',
- 'distribution_name' => 'Drupal',
- 'version' => NULL,
- 'hidden' => FALSE,
- 'php' => DRUPAL_MINIMUM_PHP,
- );
- $info = drupal_parse_info_file("profiles/$profile/$profile.info") + $defaults;
- $info['dependencies'] = array_unique(array_merge(
- drupal_required_modules(),
- $info['dependencies'],
- ($locale != 'en' && !empty($locale) ? array('locale') : array()))
- );
-
-
- array_shift($info['dependencies']);
- $cache[$profile] = $info;
- }
- return $cache[$profile];
- }
- function db_run_tasks($driver) {
- db_installer_object($driver)->runTasks();
- return TRUE;
- }
- function db_installer_object($driver) {
- Database::loadDriverFile($driver, array('install.inc'));
- $task_class = 'DatabaseTasks_' . $driver;
- return new $task_class();
- }
|