function omega_tools_subtheme_validate_automation in Omega Tools 7.3
@todo
1 string reference to 'omega_tools_subtheme_validate_automation'
- omega_tools_subtheme_add in includes/
omega_tools.admin.inc - @todo
File
- includes/
omega_tools.admin.inc, line 208
Code
function omega_tools_subtheme_validate_automation($element, $form_state) {
$path = 'sites/' . $form_state['values']['destination'] . '/themes';
if ($element['#value'] == TRUE && !file_prepare_directory($path, NULL)) {
form_error($element, t('The destination that you selected is not writable. Please choose a different destination, or select the manual installation method.'));
}
}