update_manager_install_form_validate

Versions
mediamosa-21
update_manager_install_form_validate($form, &$form_state)

Validate the form for installing a new project via the update manager.

Related topics

Code

modules/update/update.manager.inc, line 506

<?php
function update_manager_install_form_validate($form, &$form_state) {
  if (!($form_state['values']['project_url'] XOR !empty($_FILES['files']['name']['project_upload']))) {
    form_set_error('project_url', t('You must either provide a URL or upload an archive file to install.'));
  }

  if ($form_state['values']['project_url']) {
    if (!valid_url($form_state['values']['project_url'], TRUE)) {
      form_set_error('project_url', t('The provided URL is invalid.'));
    }
  }
}
?>