1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339 |
- <?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 = 'Resolve all issues below to continue the installation. For help configuring your database server, see the <a href="http://drupal.org/getting-started/install">installation handbook</a>, or contact your hosting provider.' . $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 {
-
-
-
-
- drupal_clear_opcode_cache(DRUPAL_ROOT . '/' . $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');
- }
- }
- }
-
- 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();
- }
|