'Media browser', 'wysiwyg_icon_title' => 'Add media', //@todo: We should do this per type actually. For "other" it should be a link. 'wysiwyg_default_view_mode' => 'media_large', // Types which can be selected when embedding media vs wysiwyg. 'wysiwyg_allowed_types' => array('image', 'video'), // Attributes which can be modified via the wysiwyg and persist. 'wysiwyg_allowed_attributes' => array('height', 'width', 'hspace', 'vspace', 'border', 'align', 'style', 'alt', 'title', 'class', 'id'), 'field_select_media_text' => 'Select media', 'field_remove_media_text' => 'Remove media', // Name of the theme to use in media popup dialogs 'dialog_get_theme_name' => 'seven', // @TODO: Make a configuration form with this. 'file_extensions' => 'jpg jpeg gif png txt doc xls pdf ppt pps odt ods odp mp3 mov m4v mp4 mpeg avi ogg wmv ico', 'max_filesize' => '', 'debug' => FALSE, 'file_list_size' => 10, // Used in media.xml.inc: how long to cache retrieved remote data. 'xml_cache_expire' => 3600, // Browser defaults in media.browser.inc. 'browser_viewtype_default' => 'thumbnails', 'browser_pager_limit' => 40, 'browser_library_empty_message' => 'There are currently no media in this library to select.', 'import_batch_size' => 20, 'fromurl_supported_schemes' => array('http', 'https', 'ftp', 'smb', 'ftps'), 'type_icon_directory' => drupal_get_path('module', 'media') . '/images/types', 'icon_base_directory' => drupal_get_path('module', 'media') . '/images/icons', 'icon_set' => 'default', ); } if (!isset($name)) { return $defaults; } if (isset($defaults[$name])) { return $defaults[$name]; } }