'File browser', 'page callback' => 'imce', 'access callback' => 'imce_access', 'file' => 'inc/imce.page.inc', 'type' => MENU_CALLBACK, ); $items['user/%user/imce'] = array( 'title' => 'File browser', 'page callback' => 'imce_user_page', 'page arguments' => array(1), 'access callback' => 'imce_user_page_access', 'access arguments' => array(1), 'file' => 'inc/imce.page.inc', 'type' => MENU_LOCAL_TASK, 'weight' => 10, ); $items['admin/config/media/imce'] = array( 'title' => 'IMCE', 'description' => 'Control how your image/file browser works.', 'page callback' => 'imce_admin', 'access arguments' => $access, 'file' => 'inc/imce.admin.inc', ); $items['admin/config/media/imce/profile'] = array( 'title' => 'Add new profile', 'page callback' => 'imce_profile_operations', 'access arguments' => $access, 'type' => MENU_CALLBACK, 'file' => 'inc/imce.admin.inc', ); return $items; } /** * Implements hook_permission(). */ function imce_permission() { return array( 'administer imce' => array( 'title' => t('Administer IMCE'), 'restrict access' => TRUE, ), ); } /** * Implements hook_theme(). */ function imce_theme() { $path = drupal_get_path('module', 'imce') . '/tpl'; $theme['imce_admin'] = array('function' => 'imce_admin_theme', 'render element' => 'form'); $theme['imce_directories'] = array('function' => 'imce_directories_theme', 'render element' => 'form'); $theme['imce_thumbnails'] = array('function' => 'imce_thumbnails_theme', 'render element' => 'form'); $theme['imce_root_text'] = array( 'variables' => array('imce_ref' => NULL), ); $theme['imce_user_page'] = array( 'variables' => array('account' => NULL), ); $theme['imce_file_list'] = array( 'template' => 'imce-file-list', 'variables' => array('imce_ref' => NULL), 'path' => $path, ); $theme['imce_content'] = array( 'template' => 'imce-content', 'variables' => array('tree' => NULL, 'forms' => NULL, 'imce_ref' => NULL), 'path' => $path, ); $theme['imce_page'] = array( 'template' => 'imce-page', 'variables' => array('content' => NULL), 'path' => $path, ); return $theme; } /** * Implements hook_file_download(). * Support private downloads if not disabled. */ function imce_file_download($uri) { $serve = file_uri_scheme($uri) == 'private' && !variable_get('imce_settings_disable_private', 1) && file_exists($uri); if ($serve) { return array( 'Content-type' => file_get_mimetype($uri), 'Content-Length' => filesize($uri), ); } } /** * Implements hook_file_delete(). */ function imce_file_delete($file) { db_delete('imce_files')->condition('fid', $file->fid)->execute(); } /** * Implements of hook_file_references(). */ function imce_file_references($file) { //do not report reference count on internal file deletion if (isset($file->imce_noref) && $file->imce_noref) { return; } if (db_query('SELECT 1 FROM {imce_files} WHERE fid = :fid', array(':fid' => $file->fid))->fetchField()) { return array('imce' => 1); } } /** * Implements hook_element_info(). */ function imce_element_info() { return array('textarea' => array('#process' => array('imce_textarea'))); } /** * Inline image/link insertion to textareas. */ function imce_textarea($element) { static $regexp; if (!isset($regexp)) { $regexp = FALSE; if (imce_access() && $regexp = str_replace(' ', '', variable_get('imce_settings_textarea', ''))) { $regexp = '@^' . str_replace(',', '|', implode('.*', array_map('preg_quote', explode('*', $regexp)))) . '$@'; } } if ($regexp && preg_match($regexp, $element['#id'])) { drupal_add_js(drupal_get_path('module', 'imce') . '/js/imce_set_inline.js'); $element['#description'] = (isset($element['#description']) ? $element['#description'] : '') . '
'; } return $element; } /** * Returns the configuration profile assigned to a user for a specific file scheme. */ function imce_user_profile($user, $scheme = NULL) { $profiles = variable_get('imce_profiles', array()); $swrappers = file_get_stream_wrappers(); $default_scheme = variable_get('file_default_scheme', 'public'); //handle user#1 separately if ($user->uid == 1) { $scheme = empty($scheme) ? $default_scheme : $scheme; if (isset($profiles[1]) && isset($swrappers[$scheme])) { return $profiles[1] + array('scheme' => $scheme); } return FALSE; } //handle regular users $roles_profiles = variable_get('imce_roles_profiles', array()); //store assigned configuration $conf = array(); foreach ($roles_profiles as $rid => $role) { if (isset($user->roles[$rid])) { $conf = $role; break; } } //no scheme-profile assignment if (empty($conf)) { return FALSE; } //return the profile for the specified scheme if (!empty($scheme)) { $key = $scheme . '_pid'; if (isset($conf[$key]) && isset($profiles[$conf[$key]]) && isset($swrappers[$scheme])) { return $profiles[$conf[$key]] + array('scheme' => $scheme); } return FALSE; } //no scheme specified. check the default $scheme = $default_scheme; $key = $scheme . '_pid'; if (isset($conf[$key]) && isset($profiles[$conf[$key]]) && isset($swrappers[$scheme])) { return $profiles[$conf[$key]] + array('scheme' => $scheme); } //check if any of the schemes has a profile assigned. foreach ($conf as $key => $pid) { if (substr($key, -4) == '_pid' && isset($profiles[$pid])) { $scheme = substr($key, 0, -4); if (isset($swrappers[$scheme])) { return $profiles[$pid] + array('scheme' => $scheme); } } } return FALSE; } /** * Checks if the user is assigned an imce profile. * A more detailed assignment check is performed before imce loads. */ function imce_access($user = FALSE) { if ($user === FALSE) { global $user; } if ($user->uid == 1) { return TRUE; } $roles_profiles = variable_get('imce_roles_profiles', array()); foreach ($roles_profiles as $rid => $role) { if (isset($user->roles[$rid])) { foreach ($role as $key => $pid) { if (substr($key, -4) == '_pid' && $pid) { return TRUE; } } break; } } return FALSE; } /** * Checks access to user/{$account->uid}/imce for the $user. */ function imce_user_page_access($account, $user = FALSE) { if ($user === FALSE) { global $user; } return $account->uid == $user->uid && ($profile = imce_user_profile($user)) && $profile['usertab']; } /** * Check if the directory name is regular. */ function imce_reg_dir($dirname) { return $dirname == '.' || (is_string($dirname) && $dirname != '' && !preg_match('@(^\s)|(^/)|(^\./)|(\s$)|(/$)|(/\.$)|(\.\.)|(//)|(\\\\)|(/\./)@', $dirname)); }