From k.fumy at gmx.de Mon Apr 4 22:53:03 2011 From: k.fumy at gmx.de (Klaus Fumy) Date: Mon, 04 Apr 2011 22:53:03 +0200 Subject: [TYPO3-seminars] how to get my own text in linked listview fileds Message-ID: Is it possible to set up in the seminars_pi1.tmpl something like Seminarinfos in listview? > > I want not the specific filename of the attached file displayed in list > view, but my own text. On the other side the generated link should work. > I spent hours with trying, but can?t get it so far. > > Any hints? > cheers klaus sorry, I ment something like my own text From lists at felixnagel.com Tue Apr 5 18:41:50 2011 From: lists at felixnagel.com (Felix Nagel) Date: Tue, 05 Apr 2011 18:41:50 +0200 Subject: [TYPO3-seminars] How to xclass seminars Message-ID: Hey, Im trying to xclass function populateListCountries in pi1\class.tx_seminars_pi1_eventEditor.php but without success. user_extension localconf.php: $TYPO3_CONF_VARS[TYPO3_MODE]["XCLASS"]["ext/seminars/pi1/class.tx_seminars_pi1_eventEditor.php"] = t3lib_extMgm::extPath($_EXTKEY).'lib/seminars/class.ux_tx_seminars_pi1_eventEditor.php'; My modified class (file class.ux_tx_seminars_pi1_eventEditor.php) class ux_tx_seminars_pi1_eventEditor extends tx_seminars_pi1_eventEditor { public static function populateListCountries() { $result = array(); xdebug("test new"); // do stuff return $result; } } Nothing happens. Does the oelib autoloader respect xclasses? I tried to change the the form TS, too: newPlace_country = renderlet:LISTBOX newPlace_country { name = newPlace_country label = LLL:EXT:seminars/locallang_db.xml:tx_seminars_sites.country wrap =
|
data { items { 10.caption =   10.value = 0 } userobj.php ( require_once(t3lib_extMgm::extPath('oelib') . 'class.tx_oelib_Autoloader.php'); return ux_tx_seminars_pi1_eventEditor::populateListCountries(); ) } } but all I got is another error message: Fatal error: Class 'ux_tx_seminars_pi1_eventEditor' not found in /html/typo3/typo3conf/ext/ameos_formidable/api/class.tx_ameosformidable.php(5013) : eval()'d code on line 2 I will need to implement some more changes within seminars and I'll get into trouble if there's no chance to xclass. Any hints? -- Gr??e Felix Nagel From mushroomhead at maktoob.com Mon Apr 18 18:10:07 2011 From: mushroomhead at maktoob.com (mushroomhead mushroomhead) Date: Mon, 18 Apr 2011 16:10:07 +0000 Subject: [TYPO3-seminars] =?windows-1256?q?seminars_and_smtp_server_settin?= =?windows-1256?q?gs_problem?= Message-ID: Hello, I've got the following question: I want to send emails coming from the seminars extension through another mail server on different machine (ie it is not the default localhost). Seems to be a trivial problem but unfortunately I can't find a way to set smtp mail server for example mail.example.com on port 25. I've noticed that this extension uses oelib tx_oelib_Mail to send emails. I've checked all these classes in oelib and in vain. I can't believe that this cool extension is lacking in this feature. Oelib has some PEAR classes but it was hard to find any documention. So is there a way to set a smtp email server and get the problem somehow round ? best regards robert ------------------------- Sponsored by: http://adsnew.maktoob.com/advertpro/servlet/click/media?mid=6839&pid=0&lookup=true&position=1 Think you?ve got the freshness Karl Wolf is looking for? Close Up & Karl Wolf are creating the World?s Largest* Music Video & you can star in it! Visit http://www.Closeuparabia.com to register & record. Plus, join the Fresh Crew at http://www.facebook.com/closeuparabia * Most number of people featuring in Karl Wolf's music video http://adsnew.maktoob.com/advertpro/servlet/click/media?mid=6839&pid=0&lookup=true&position=1 From typo3-german-02 at oliverklee.de Tue Apr 19 11:08:50 2011 From: typo3-german-02 at oliverklee.de (Oliver Klee) Date: Tue, 19 Apr 2011 11:08:50 +0200 Subject: [TYPO3-seminars] seminars and smtp server settings problem In-Reply-To: References: Message-ID: Hi Robert, Am 18.04.2011 18:10, schrieb mushroomhead mushroomhead: > I've checked all these classes in oelib and in vain. I > can't believe that this cool extension is lacking in this feature. Oelib has some PEAR > classes but it was hard to find any documention. > So is there a way to set a smtp email server and get the problem somehow round ? Currently not. If you could provide a patch for oelib to make it use 4.5's Swiftmailer (if TYPO3 is >= 4.5) and put it in the bug tracker , that would be awesome. Oli -- Certified TYPO3 Integrator | TYPO3 Security Team Member From typo3-german-02 at oliverklee.de Tue Apr 19 11:14:28 2011 From: typo3-german-02 at oliverklee.de (Oliver Klee) Date: Tue, 19 Apr 2011 11:14:28 +0200 Subject: [TYPO3-seminars] How to xclass seminars In-Reply-To: References: Message-ID: Hi, Am 05.04.2011 18:41, schrieb Felix Nagel: > Nothing happens. Does the oelib autoloader respect xclasses? Generally, yes. There was a bug concerning XCLASS in oelib < 0.7.0, but that has been fixed. > I tried to change the the form TS, too: > newPlace_country = renderlet:LISTBOX > newPlace_country { > name = newPlace_country > label = LLL:EXT:seminars/locallang_db.xml:tx_seminars_sites.country > wrap =
|
> data { > items { > 10.caption =   > 10.value = 0 > } > userobj.php ( > require_once(t3lib_extMgm::extPath('oelib') . > 'class.tx_oelib_Autoloader.php'); > return ux_tx_seminars_pi1_eventEditor::populateListCountries(); > ) > } > } This is a static function call, i.e. there is no class instance and thus no possibility to use XCLASSes. However, you can just overwrite that TS to use your own user object call for creating the list of countries. Oli -- Certified TYPO3 Integrator | TYPO3 Security Team Member From mushroomhead at maktoob.com Tue Apr 19 11:24:23 2011 From: mushroomhead at maktoob.com (mushroomhead mushroomhead) Date: Tue, 19 Apr 2011 09:24:23 +0000 Subject: [TYPO3-seminars] =?windows-1256?q?seminars_and_smtp_server_settin?= =?windows-1256?q?gs_problem?= In-Reply-To: References: Message-ID: Thank you Oliver !!! I'll take a look at Swiftmailer. On Tue, 19 Apr 2011 11:08:50 +0200, Oliver Klee wrote: Hi Robert, Am 18.04.2011 18:10, schrieb mushroomhead mushroomhead: > I've checked all these classes in oelib and in vain. I > can't believe that this cool extension is lacking in this feature. Oelib has some PEAR > classes but it was hard to find any documention. > So is there a way to set a smtp email server and get the problem somehow round ? Currently not. If you could provide a patch for oelib to make it use 4.5's Swiftmailer (if TYPO3 is >= 4.5) and put it in the bug tracker ;, that would be awesome. Oli -- Certified TYPO3 Integrator | TYPO3 Security Team Member _______________________________________________ TYPO3-project-seminars mailing list TYPO3-project-mailto:seminars at lists.typo3.org http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-project-seminars ------------------------- Sponsored by: http://adsnew.maktoob.com/advertpro/servlet/click/media?mid=6839&pid=0&lookup=true&position=1 Think you?ve got the freshness Karl Wolf is looking for? Close Up & Karl Wolf are creating the World?s Largest* Music Video & you can star in it! Visit http://www.Closeuparabia.com to register & record. Plus, join the Fresh Crew at http://www.facebook.com/closeuparabia * Most number of people featuring in Karl Wolf's music video http://adsnew.maktoob.com/advertpro/servlet/click/media?mid=6839&pid=0&lookup=true&position=1