'', 'favorite' => 'blank' ); /** * Nextmatch settings * @see etemplate_widget_nextmatch * @var array */ protected $nm_settings = array( 'no_filter' => true, 'no_filter2' => true, 'no_cat' => true, 'no_search' => true, 'lettersearch' => false, 'favorites' => false, // Hide favorite control ); /** * Constructor sets up the portlet according to the user's saved property values * for this particular portlet. It is possible to have multiple instances of the * same portlet with different properties. * * The implementing class is allowed to modify the context, if needed, but it is * better to use get_properties(). * * @param context Array portlet settings such as size, as well as values for properties * @param boolean $need_reload Flag to indicate that the portlet needs to be reloaded (exec will be called) */ public function __construct(Array &$context = array(), &$need_reload = false) { // Process dropped data (Should be [appname => , id => ]) into something useable if($context['dropped_data']) { foreach((Array)$context['dropped_data'] as $dropped) { // Only handle one, but dropped is an array $context['appname'] = $dropped['appname']; $context['favorite'] = $dropped['id']; break; } unset($context['dropped_data']); $need_reload = true; } // Title not set for new widgets created via context menu if(!$context['title']) { // Set initial size to 6x3, default is way too small $context['width'] = 6; $context['height'] = 3; $need_reload = true; } $favorites = egw_favorites::get_favorites($context['appname']); $this->favorite = $favorites[$context['favorite']]; $this->title = $context['title'] = $context['title'] ? $context['title'] : lang($context['appname']) . ' ' . $this->favorite['name']; $this->context = $context; if($this->favorite) { $this->nm_settings['favorite'] = $this->context['favorite']; $this->nm_settings['columnselection_pref'] = 'nextmatch-home'; if(is_array($this->favorite['state'])) { $this->nm_settings += $this->favorite['state']; } } } public function exec($id = null, etemplate_new &$etemplate = null) { if($etemplate == null) { $etemplate = new etemplate_new(); } $etemplate->read('home.favorite'); $etemplate->set_dom_id($id); $content = $this->context + array('nm' => $this->nm_settings); $etemplate->setElementAttribute('nm', 'template',$this->nm_settings['template']); $etemplate->exec(get_called_class() .'::process',$content); } public static function process($content = array()) { // We need to keep the template going, thanks. etemplate_widget::setElementAttribute('','',''); } public function get_actions(){ return array(); } /** * 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'=> lang('Favorite'), 'title'=> $this->title, 'description'=> lang('Show the entries from a favorite') ); } /** * 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(); $favorites = egw_favorites::get_favorites($this->context['appname']); $favorite_list = array(); foreach($favorites as $id => $favorite) { $favorite_list[$id] = $favorite['name']; } $favorite = array( 'label' => lang('Favorite'), 'name' => 'favorite', 'type' => 'select', 'select_options' => $favorite_list ); if($this->context['favorite']) { $favorite['type'] = 'select_ro'; } $properties[] = $favorite; $properties[] = array( 'appname' => 'appname' ); return $properties; } }