function rex_rss_reader_component()
 {
     // default cache lifetime in seconds
     $cache_options['lifetime'] = 3600;
     parent::rex_dashboard_component('rss-reader', $cache_options);
     $this->setConfig(new rex_rss_reader_component_config());
     $this->setFormat('full');
 }
 function rex_cronjob_component()
 {
     global $I18N;
     parent::rex_dashboard_component('cronjob');
     $this->setTitle($I18N->msg('cronjob_dashboard_component_title'));
     $this->setTitleUrl('index.php?page=cronjob');
     $this->setFormat('full');
     $this->setBlock($I18N->msg('cronjob_dashboard_block'));
 }
 function rex_media_component()
 {
     global $I18N;
     parent::rex_dashboard_component('userinfo-media');
     $this->setTitle($I18N->msg('userinfo_component_media_title'));
     $this->setTitleUrl('javascript:openMediaPool();');
     $this->setBlock($I18N->msg('userinfo_block_latest_infos'));
 }