|
Quotes |
" ... I want to tell you that your thyme product is functional and valuable beyond
words. I cannot imagine why any portal would be without it. It is the cornerstone of our new project ..."
" ... Thanks for such a complete project, its making my job much easier. ..."
" ... I have now deployed 4 different calendars and our users love them ... "
" ... Easy to install and use and a great look/design. ..."
" ... This has to be the easiest to use program I think I've had to deal with at all this year. ..."
|
|
| View previous topic :: View next topic |
| Author |
Message |
coderFreak
Joined: 03 Oct 2008 Posts: 5
|
Posted: Fri Oct 03, 2008 1:27 am Post subject: Site Integration with tabs and calendar dropdown |
|
|
good day
i am new to thyme and i just started to develop with for a week now. i am trying to develop the following layout
i am having trouble with the calendar. when i choose calendar_name, the calendar does not display anything / does not display the events.
same as with the event view. it does not display the events of a certain calendar_name
this is kinda urgent so any help would be highly appreciated. thanks
coderFreak  |
|
| Back to top |
|
 |
esoft_ian
Joined: 12 Sep 2005 Posts: 5279
|
Posted: Fri Oct 03, 2008 5:23 pm Post subject: |
|
|
Hi,
Could you please e-mail me regarding this? ian@extros... Attach the code you are using and please include the URL and admin password to Thyme. |
|
| Back to top |
|
 |
coderFreak
Joined: 03 Oct 2008 Posts: 5
|
Posted: Mon Oct 06, 2008 1:37 am Post subject: |
|
|
got it working. just added the following in the start of my code
| Code: |
<?
session_start();
$_SESSION['calendar'] = $_REQUEST['calendar'];
?>
|
the next prob i had now is the http://localhost/event/events.php?evnt_view=2
my calendar view tabs works by switching the $_SESSION['v'] variable
i don't know now what to do with 'evnt_view' so that the 'All | Upcoming | Past' links in the events view would work.
i sent you an email earlier but just ingnore that.  |
|
| Back to top |
|
 |
esoft_ian
Joined: 12 Sep 2005 Posts: 5279
|
Posted: Tue Oct 07, 2008 4:59 am Post subject: |
|
|
Hi,
It may be easier to just use this after session_start():
| Code: |
foreach(array("y","m","d","v",'evnt_type','calendar',
'vcat','event_action','evnt_view',
'searchfor','evnt_order_by','evnt_order_desc','evnt_count') as $var) {
if(isset($_REQUEST[$var]) && !is_array($_REQUEST[$var])) {
$_SESSION[$var] = $_REQUEST[$var];
}
} |
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|