Forums / Setup & design / event for a site
santosh kumar
Sunday 08 February 2004 9:35:57 pm
Hi all im new to pHp and ez systems , i have modified the index.php and have created sections home ,about us ,contact us and events till now its ok but i have to create events which displays the event like festival and its date which changes dynamicaly when viewed for that i have created a class in admin interface event name description and date now im not able to view it in user event link in index .php please help me out . could u tell me which classes or datatypes preesent in ez pudlish root shuld be used .??? thans santosh
Vidar Langseid
Wednesday 11 February 2004 3:26:59 am
You should not have to change index.php at all.
You might take a look here to get a introduction to Exponential:http://ez.no/ez_publish/documentation/toc/(from)/36647
If I understand you correctly, you have problems showing objects of a certain class on the usersite ? When you create a new class, you have to give anonymous users permission to see it. In admin, go to "Users-->Roles-->Anonymous" (uri would be something like "/role/view/1") and grant read permission to the new class.
Friday 13 February 2004 3:21:11 am
Hi vidar thanks for the help i have got the list of events in the site . Now i need to display the date associated with that event in the list of events For example it shuld display ---> event1 21jan1993 event2 31jan1923 event3 24april 1987 etc etc .... Now when i click Event1 it shuld dispaly the details of event1 and when i view the Event link in the main page the next event event2 shuld be the first event displayed and when i click the event 2 then the event 3 shuld be first and event2 2nd and event1 3rd shuld be dispalyed I hope any one will help me out could any one give me the code for that /.. this is the templatef ile full_view_events_folder <div class="pagetitle"> View Events</div>
{* Grab all the child nodes. *} {let children=fetch( content, list, hash( parent_node_id, $node.node_id, sort_by, $node.sort_array ))}
<table class="events_list" cellpadding="10" cellspacing="10" border="0">
{* Loop through all nodes that we just fetched. *} {section name=Child loop=$children}
{* Output the name as a link to the node containing the member. *} <tr> <td> <a href={$:item.url_alias|ezurl}>{$:item.name}</a> </td> </tr>
{* End of loop. *} {/section}
</table>
{/let}santosh
Friday 13 February 2004 8:29:08 pm
{* Grab all the child nodes. *} {let children=fetch( content, list, hash( parent_node_id, $node.node_id,sort_by, $node.sort_array ))}
{* Loop through all nodes that we just fetched. *}{section name=Child loop=$children}
{* Output the name as a link to the node containing the member. *} <tr> <td> <a href={$:item.url_alias|ezurl}>{$:item.name}</a> </td></tr>
{* End of loop. *}{/section}
{/let}
santosh