| 1 |
<?php |
<?php |
| 2 |
|
|
| 3 |
// $Id: audio_import.pages.inc,v 1.3 2008/12/21 22:23:41 drewish Exp $ |
// $Id: audio_import.pages.inc,v 1.4 2009/05/10 19:15:23 drewish Exp $ |
| 4 |
|
|
| 5 |
|
|
| 6 |
function audio_import_validate_file($file) { |
function audio_import_validate_file($file) { |
| 14 |
|
|
| 15 |
$dirpath = variable_get('audio_import_path', ''); |
$dirpath = variable_get('audio_import_path', ''); |
| 16 |
if (!file_check_directory($dirpath)) { |
if (!file_check_directory($dirpath)) { |
| 17 |
drupal_set_message(t("You need to configure the import directory on the audio import module's <a href='!settings-page'>settings page</a>.", array('!settings-pages' => url('admin/settings/audio_import'))), 'error'); |
drupal_set_message(t("You need to configure the import directory on the audio import module's <a href='!settings-page'>settings page</a>.", array('!settings-page' => url('admin/settings/audio_import'))), 'error'); |
| 18 |
return $form; |
return $form; |
| 19 |
} |
} |
| 20 |
|
|