title = $context['title']; } foreach($context['list'] as &$item) { if($item['app'] == 'filemanager' || $item['app'] == 'file') { $item['app'] = 'file'; $item['type'] = egw_vfs::mime_content_type($item['id']); // Always reload... $need_reload = true; } } $this->context = $context; } /** * Some descriptive information about the portlet, so that users can decide if * they want it or not, and for inclusion in lists, hover text, etc. * * These should be already translated, no further translation will be done. * * @return Array with keys * - displayName: Used in lists * - title: Put in the portlet header * - description: A short description of what this portlet does or displays */ public function get_description() { return array( 'displayName'=> 'List of entries', 'title'=> $this->title, 'description'=> lang('Show a list of entries') ); } /** * Get a fragment of HTML for display * * @param id String unique ID, provided to the portlet so it can make sure content is * unique, if needed. * @return string HTML fragment for display */ public function exec($id = null, etemplate_new &$etemplate = null) { $etemplate->read('home.list'); $etemplate->set_dom_id($id); $content = $this->context; if(!is_array($content['list'])) { $content['list'] = Array(); } // Filemanager support - links need app = 'file' and type set foreach($content['list'] as &$list) { if($list['app'] == 'filemanager') $list['app'] = 'file'; if($list['app'] == 'file') { $list['app'] = 'file'; $list['path'] = $list['title'] = $list['icon'] = $list['id']; $list['type'] = egw_vfs::mime_content_type($list['id']); } } $etemplate->exec('home.home_list_portlet.exec',$content); } /** * Return a list of settings to customize the portlet. * * Settings should be in the same style as for preferences. It is OK to return an empty array * for no customizable settings. * * These should be already translated, no further translation will be done. * * @see preferences/inc/class.preferences_settings.inc.php * @return Array of settings. Each setting should have the following keys: * - name: Internal reference * - type: Widget type for editing * - label: Human name * - help: Description of the setting, and what it does * - default: Default value, for when it's not set yet */ public function get_properties() { $properties = parent::get_properties(); $properties[] = array( 'name' => 'title', 'type' => 'textbox', 'label' => lang('Title'), ); // Internal - no type means it won't show in configure dialog $properties[] = array( 'name' => 'list' ); return $properties; } /** * Return a list of allowable actions for the portlet. * * These actions will be merged with the default porlet actions. * We add an 'edit' action as default so double-clicking the widget * opens the entry */ public function get_actions() { $actions = array( 'add' => array( 'icon' => 'add', 'caption' => lang('add'), 'hideOnDisabled' => false, 'onExecute' => 'javaScript:app.home.add_link', ), 'add_drop' => array( 'type' => 'drop', 'caption' => lang('add'), 'onExecute' => 'javaScript:app.home.add_link', 'acceptedTypes' => array('file','link') + array_keys($GLOBALS['egw_info']['apps']), ) ); return $actions; } /** * List portlet displays multiple entries, so it makes sense to accept multiple dropped entries */ public function accept_multiple() { return true; } /** * This portlet accepts files and links * * @return boolean|String[] */ public function accept_drop() { return array('file','link'); } }