1 neenan 1.1 <!--- Name: act_getPrograms.cfm
2 Purpose: This functions as the action file to retreive the organizational information entered by the current user accessing the Programadmin forms.
3 The information is displayed on the dsp_editOrganization.cfm via the "editorganization" fuseaction method.
4 This page is called in the edit mode, changes are done using the act_updateorganization.cfm form to the dorganization table.
5 Dated: 02/24/2005
6 Dependancy: URL.Orgid
7 Variables:
8
9 Functions:
10 Date changed:
11 02/24/2005 Prabin & Neena Created & Documentation
|
12 neenan 1.2 03/22/2005 Neena updated the file to use cflocation tags to be directed to edit
13 organization page with information.
|
14 neenan 1.1 --->
15
16 <P>
17 <a href="../directories/programs.cfm" class="sublink2">
18 Agencies and Programs <img src="../images/siteimage/dart.gif" border="0"></a>
19 </p>
20
21 <cfquery name="provider" datasource="#programsdb#">
22 SELECT organizationname,*
23 FROM dOrganization
24 where orgID = #URL.orgid#
25 </cfquery>
26
27 <cfif #URL.fuseaction# IS "GetOrganizations">
28
|
29 neenan 1.2 <!--- <table width="100%" border="0" cellspacing="0" cellpadding="10" name="text">
|
30 neenan 1.1 <tr>
31 <td>
32 <p><span class="tableheading">Programs in Region 7</span> <br><br>
33 <p><cfoutput query="provider"><a href="details.cfm?orgid=#orgid#" class="subheading">#organizationName#</a>
34 <a href="addeditprograms.cfm?FuseAction=Editorganization&OrgID=#orgid#">Edit</a>
35
36 <br><br></cfoutput>
37
38 <a href="#top"><img src="../images/SiteImage/top.gif" border="0"></a><br><br>
39
40 </tr>
|
41 neenan 1.2 </table> --->
42 <cflocation url="addeditprograms.cfm?FuseAction=Editorganization&OrgID=#orgid#" addToken="No">
|
43 neenan 1.1 </cfif>
44
45 <cfif #URL.fuseaction# IS "EDITORGANIZATIONS">
46
|
47 neenan 1.2 <!--- <table width="100%" border="0" cellspacing="0" cellpadding="10" name="text">
|
48 neenan 1.1 <tr>
49 <td>
50 <p><span class="tableheading">Programs in Region 7</span> <br><br>
51 <p><cfoutput query="provider"><a href="details.cfm?orgid=#orgid#" class="subheading">#provider.organizationName#</a>
52 <a href="addeditprograms.cfm?FuseAction=Editorg&OrgID=#orgid#">Edit</a>
53
54 <br><br></cfoutput>
55
56 <a href="#top"><img src="../images/SiteImage/top.gif" border="0"></a><br><br>
57
58 </tr>
|
59 neenan 1.2 </table> --->
60 <cflocation url="addeditprograms.cfm?FuseAction=Editorg&OrgID=#orgid#" addToken="No">
61
|
62 neenan 1.1 </CFIF>
63
|