Search found 8 matches
- Fri Apr 18, 2008 10:47 am
- Forum: Modules/Add-Ons
- Topic: clean URLs and Redirect()
- Replies: 2
- Views: 1895
Re: clean URLs and Redirect()
I am experiencing the same problem - is there any way, that Redirect() outputs pretty URLs
- Thu Apr 17, 2008 8:24 am
- Forum: Modules/Add-Ons
- Topic: [Solved] ForumMadeSimple instance
- Replies: 2
- Views: 929
Re: ForumMadeSimple instance
Okay, I could generalize my question a bit - how to get an instance of any module? I saw few examples and in some of them, there is a method in CMSModule - GetSearch() (or similar) to get an instance of the search module, so I suppose, that there are few build-in functions... For other modules peopl...
- Wed Apr 16, 2008 1:29 pm
- Forum: Modules/Add-Ons
- Topic: [Solved] ForumMadeSimple instance
- Replies: 2
- Views: 929
[Solved] ForumMadeSimple instance
How to get an instance of the ForumMadeSimple object and is this object a singleton?
Thanks in advance.
Thanks in advance.
- Wed Apr 16, 2008 10:33 am
- Forum: Modules/Add-Ons
- Topic: [Solved] Problem with Pretty URL
- Replies: 4
- Views: 1542
Re: Problem with Pretty URL
problem solved
- Wed Apr 16, 2008 8:17 am
- Forum: Modules/Add-Ons
- Topic: [Solved] Problem with Pretty URL
- Replies: 4
- Views: 1542
Re: Problem with Pretty URL
Thanks for the reply. Can you give me an example, because this is not documented in the tutorial?
- Tue Apr 15, 2008 5:16 pm
- Forum: Modules/Add-Ons
- Topic: [Solved] Problem with Pretty URL
- Replies: 4
- Views: 1542
[Solved] Problem with Pretty URL
Hi, I have an (understanding) problem with the pretty URL idea. I read the tutorial on the cmsms website and I did the same with my own module: 1. I extended the SetParameters() function with: $this->RegisterRoute('/hands\/(?P<selectedhand>[0-9]+)\/(?P<returnid>[0-9]+)$/', array('action'=>'default')...
- Wed Mar 26, 2008 8:48 am
- Forum: CMSMS Core
- Topic: [Solved] DisplayImage in Front-End
- Replies: 2
- Views: 987
Re: [Solved] DisplayImage in Front-End
Yes I am developing a new module. Well I didn't want to install a whole new module just for 1 method, so I just checked, how it is defined in CGE (didnt thought it will be so simple) and I wrote my own (similar) function.
Thanks for the tip.
Thanks for the tip.
- Sat Mar 22, 2008 3:11 pm
- Forum: CMSMS Core
- Topic: [Solved] DisplayImage in Front-End
- Replies: 2
- Views: 987
[Solved] DisplayImage in Front-End
Hi, I wanted to ask if there is a method to display an image in the front end (I saw (and currently use) that there is such a method in the admin theme): $gCms->variables['admintheme']->DisplayImage('icons/system/edit.gif', $this->Lang('edit'),'','','systemicon') I guess I could use the same method ...