2009-10-01 21:03:56 +00:00
< ?
2025-01-29 03:30:48 +00:00
/*
* This file is part of the 'Science Fair In A Box' project
* SFIAB Website : http :// www . sfiab . ca
*
* Copyright ( C ) 2009 James Grant < james @ lightbox . org >
*
* This program is free software ; you can redistribute it and / or
* modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation , version 2.
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program ; see the file COPYING . If not , write to
* the Free Software Foundation , Inc . , 59 Temple Place - Suite 330 ,
* Boston , MA 02111 - 1307 , USA .
*/
2009-10-01 21:03:56 +00:00
?>
< ?
2025-01-29 03:30:48 +00:00
require ( '../common.inc.php' );
require_once ( '../user.inc.php' );
user_auth_required ( 'committee' , 'admin' );
require ( 'fundraising_common.inc.php' );
switch ( get_value_from_array ( $_GET , 'action' )) {
case 'campaigninfo_save' :
save_campaign_info ();
exit ;
break ;
case 'modify' :
echo " <div id= \" campaignaccordion \" style= \" width: 780px; \" > \n " ;
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM fundraising_campaigns WHERE fiscalyear=? ORDER BY name " );
$q -> execute ([ $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
echo '<h3><a href="#">' . htmlspecialchars ( $r -> name ) . " </a></h3> \n " ;
echo " <div id= \" campaign_ { $r -> id } \" > \n " ;
echo " <form id= \" campaigninfo_ { $r -> id } \" method= \" post \" action= \" { $_SERVER [ 'PHP_SELF' ] } \" onsubmit= \" return campaigninfo_save( $r->id ) \" > \n " ;
echo " <input type= \" hidden \" name= \" campaign_id \" value= \" { $r -> id } \" /> \n " ;
echo " <table> \n " ;
display_campaign_form ( $r );
?>
2009-10-07 19:43:58 +00:00
< tr >< td colspan = " 6 " style = " text-align: center; " >
< br />
2025-01-29 03:30:48 +00:00
< input type = " submit " value = " <?= i18n('Save Appeal') ?> " ></ td >
2009-10-07 19:43:58 +00:00
</ tr >
</ table >
</ form >
</ div >
< ?
2025-01-29 03:30:48 +00:00
}
?>
< h3 >< a href = " # " >< ? = i18n ( 'Create New Appeal' ) ?> </a></h3>
2009-10-07 19:43:58 +00:00
< div id = " campaign_new " >
2025-01-29 03:30:48 +00:00
< form id = " campaigninfo_new " method = " post " action = " <?= $_SERVER['PHP_SELF'] ?> " onsubmit = " return campaigninfo_save(-1) " >
2009-10-07 19:43:58 +00:00
< input type = " hidden " name = " campaign_id " value = " -1 " />
< table >
< ?
2025-01-29 03:30:48 +00:00
display_campaign_form ();
2009-10-07 19:43:58 +00:00
?>
< tr >< td colspan = " 6 " style = " text-align: center; " >
< br />
2025-01-29 03:30:48 +00:00
< input type = " submit " value = " <?= i18n('Create Appeal') ?> " ></ td >
2009-10-07 19:43:58 +00:00
</ tr >
</ table >
</ form >
</ div >
</ div >
< ?
exit ;
break ;
2009-10-07 21:22:23 +00:00
2025-01-29 03:30:48 +00:00
case 'managelist' :
echo i18n ( 'Select an appeal' );
?>
2009-10-07 21:22:23 +00:00
< table class = " tableview " >
2010-03-30 21:59:04 +00:00
< thead >
2009-10-07 21:22:23 +00:00
< tr >
2025-01-29 03:30:48 +00:00
< th >< ? = i18n ( 'Name' ) ?> </th>
< th >< ? = i18n ( 'Type' ) ?> </th>
< th >< ? = i18n ( 'Start Date' ) ?> </th>
< th >< ? = i18n ( 'End Date' ) ?> </th>
< th >< ? = i18n ( 'Target($)' ) ?> </th>
< th >< ? = i18n ( 'Received' ) ?> </th>
< th >< ? = i18n ( '% to Budget' ) ?> </th>
< th >< ? = i18n ( 'Purpose' ) ?> </th>
2009-10-07 21:22:23 +00:00
</ tr >
2010-03-30 21:59:04 +00:00
</ thead >
2009-10-07 21:22:23 +00:00
< ?
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM fundraising_campaigns WHERE fiscalyear=? " );
$q -> execute ([ $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
2025-02-09 17:24:37 +00:00
$goalq = $pdo -> prepare ( " SELECT * FROM fundraising_goals WHERE goal=? AND fiscalyear=? " );
$goalq -> execute ([ $r -> fundraising_goal , $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
$goalr = $goalq -> fetch ( PDO :: FETCH_OBJ );
2025-02-09 17:24:37 +00:00
$recq = $pdo -> prepare ( " SELECT SUM(value) AS received FROM fundraising_donations WHERE fundraising_campaigns_id=? AND fiscalyear=? AND status='received' " );
$recq -> execute ([ $r -> id , $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
show_pdo_errors_if_any ( $pdo );
$recr = $recq -> fetch ( PDO :: FETCH_OBJ );
$received = $recr -> received ;
if ( $r -> target )
$percent = round ( $received / $r -> target * 100 , 1 );
else
$percent = 0 ;
$col = colour_to_percent ( $percent );
2009-10-07 21:22:23 +00:00
2025-01-29 03:30:48 +00:00
if ( ! $goalr ) {
$goalr = new stdClass ();
$goalr -> name = '' ;
}
2025-01-28 14:58:54 -05:00
2025-01-29 03:30:48 +00:00
echo " <tr style= \" cursor:pointer; \" onclick= \" return managecampaign( $r->id ) \" > \n " ;
echo " <td> $r->name </td> \n " ;
echo " <td> $r->type </td> \n " ;
echo ' <td>' . format_date ( $r -> startdate ) . " </td> \n " ;
echo ' <td>' . format_date ( $r -> enddate ) . '</td>' ;
echo ' <td style="text-align: right;">' . format_money ( $r -> target , false ) . " </td> \n " ;
echo ' <td style="text-align: right;">' . format_money ( $received , false ) . " </td> \n " ;
echo " <td style= \" text-align: center; background-color: $col ; \" > { $percent } %</td> \n " ;
echo " <td> $goalr->name </td> " ;
echo " </tr> \n " ;
}
?>
2009-10-07 21:22:23 +00:00
</ table >
2010-03-30 21:59:04 +00:00
< script type = " text/javascript " > $ ( '.tableview' ) . tablesorter (); </ script >
2009-10-07 21:22:23 +00:00
< br />
< ?
exit ;
2025-01-29 03:30:48 +00:00
break ;
case 'manage' :
if ( ! $_GET [ 'id' ]) {
error_ ( 'Missing campaign to manage' );
exit ;
}
$id = intval ( $_GET [ 'id' ]);
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM fundraising_campaigns WHERE id=? " );
$q -> execute ([ $id ]);
2025-01-29 03:30:48 +00:00
$campaign = $q -> fetch ( PDO :: FETCH_OBJ );
echo " <h3> $campaign->name </h3> \n " ;
?>
2009-10-07 21:22:23 +00:00
< div id = " campaign_tabs " >
< ul >
2025-01-29 03:30:48 +00:00
< li >< a href = " #campaign_tab_overview " >< span >< ? = i18n ( 'Overview' ) ?> </span></a></li>
< li >< a href = " #campaign_tab_donations " >< span >< ? = i18n ( 'Donations/Sponsorships' ) ?> </span></a></li>
< li >< a href = " #campaign_tab_prospects " >< span >< ? = i18n ( 'Prospects' ) ?> </span></a></li>
< li >< a href = " #campaign_tab_communications " >< span >< ? = i18n ( 'Communications' ) ?> </span></a></li>
2009-10-07 21:22:23 +00:00
</ ul >
< div id = " campaign_tab_overview " >
overview tab
</ div >
< div id = " campaign_tab_donations " >
donations tab
</ div >
< div id = " campaign_tab_prospects " >
prospects tab
</ div >
< div id = " campaign_tab_communications " >
communications tab
</ div >
</ div >
< ?
2025-01-29 03:30:48 +00:00
exit ;
break ;
2009-10-07 21:44:32 +00:00
2025-01-29 03:30:48 +00:00
case 'manage_tab_overview' :
$campaign_id = intval ( $_GET [ 'id' ]);
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM fundraising_campaigns WHERE id=? AND fiscalyear=? " );
$q -> execute ([ $campaign_id , $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
if ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
$goalr = getGoal ( $r -> fundraising_goal );
2025-02-09 17:24:37 +00:00
$recq = $pdo -> prepare ( " SELECT SUM(value) AS received FROM fundraising_donations WHERE fundraising_campaigns_id=? AND fiscalyear=? AND status='received' " );
$recq -> execute ([ $r -> id , $config [ 'FISCALYEAR' ]]);
2025-01-03 15:15:13 -05:00
show_pdo_errors_if_any ( $pdo );
2025-01-29 03:30:48 +00:00
$recr = recq -> fetch ( PDO :: FETCH_OBJ );
$received = $recr -> received ;
if ( $r -> target )
$percent = round ( $received / $r -> target * 100 , 1 );
2009-10-07 21:44:32 +00:00
else
2025-01-29 03:30:48 +00:00
$percent = 0 ;
$col = colour_to_percent ( $percent );
echo '<table cellspacing="3" cellpadding="3">' ;
2009-10-07 21:44:32 +00:00
echo " <tr> \n " ;
2025-01-29 03:30:48 +00:00
echo ' <td>' . i18n ( 'Type' ) . " </td><td> $r->type </td></tr> \n " ;
echo ' <td>' . i18n ( 'Start Date' ) . '</td><td>' . format_date ( $r -> startdate ) . " </td> \n " ;
2009-10-07 21:44:32 +00:00
echo " </tr> \n " ;
2025-01-29 03:30:48 +00:00
echo ' <td>' . i18n ( 'Follow-Up Date' ) . '</td><td>' . format_date ( $r -> followupdate ) . '</td>' ;
2009-10-07 21:44:32 +00:00
echo " </tr> \n " ;
2025-01-29 03:30:48 +00:00
echo ' <td>' . i18n ( 'End Date' ) . '</td><td>' . format_date ( $r -> enddate ) . '</td>' ;
2009-10-07 21:44:32 +00:00
echo " </tr> \n " ;
2025-01-29 03:30:48 +00:00
echo ' <td>' . i18n ( 'Default Purpose' ) . " </td><td> $goalr->name </td> " ;
2009-10-07 21:44:32 +00:00
echo " </tr> \n " ;
2025-01-29 03:30:48 +00:00
echo ' <td>' . i18n ( 'Target' ) . '</td><td>' . format_money ( $r -> target , false ) . " </td> \n " ;
2009-10-07 21:44:32 +00:00
echo " </tr> \n " ;
2025-01-29 03:30:48 +00:00
echo ' <td>' . i18n ( 'Received' ) . '</td><td>' . format_money ( $received , false ) . " </td> \n " ;
2009-10-07 21:52:39 +00:00
echo " </tr> \n " ;
2025-01-29 03:30:48 +00:00
echo ' <td>' . i18n ( '% to Budget' ) . " </td><td style= \" color: $col ; \" > { $percent } %</td> \n " ;
2009-10-07 21:44:32 +00:00
echo " </tr> \n " ;
echo " </table> \n " ;
2025-01-29 03:30:48 +00:00
}
exit ;
break ;
2009-10-07 21:49:49 +00:00
2025-01-29 03:30:48 +00:00
case 'manage_tab_donations' :
$campaign_id = intval ( $_GET [ 'id' ]);
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM fundraising_campaigns WHERE id=? AND fiscalyear=? " );
$q -> execute ([ $campaign_id , $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
if ( $campaign = $q -> fetch ( PDO :: FETCH_OBJ )) {
echo '<table class="tableview">' ;
echo '<thead>' ;
echo '<tr>' ;
echo ' <th>' . i18n ( 'Date' ) . " </th> \n " ;
echo ' <th>' . i18n ( 'Donor/Sponsor' ) . " </th> \n " ;
echo ' <th>' . i18n ( 'Purpose' ) . " </th> \n " ;
echo ' <th>' . i18n ( 'Amount' ) . " </th> \n " ;
echo ' <th>' . i18n ( 'Type of Support' ) . " </th> \n " ;
echo '</tr>' ;
echo " </thead> \n " ;
$q = $pdo -> prepare ( " SELECT * FROM fundraising_donations WHERE fundraising_campaigns_id=' $campaign_id '
\t\t\tAND status = 'received' ORDER BY datereceived DESC " );
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
$goal = getGoal ( $r -> fundraising_goal );
2025-02-09 17:24:37 +00:00
$sq = $pdo -> prepare ( " SELECT * FROM sponsors WHERE id=? " );
$sq -> execute ([ $r -> sponsors_id ]);
2025-01-29 03:30:48 +00:00
$sponsor = $sq -> fetch ( PDO :: FETCH_OBJ );
echo '<tr><td>' . format_date ( $r -> datereceived ) . " </td> \n " ;
echo ' <td>' . $sponsor -> organization . " </td> \n " ;
echo ' <td>' . $goal -> name . " </td> \n " ;
echo ' <td>' . format_money ( $r -> value ) . " </td> \n " ;
echo ' <td>' . i18n ( $r -> supporttype ) . " </td> \n " ;
echo " </tr> \n " ;
}
echo " </table> \n " ;
}
exit ;
break ;
case 'manage_tab_prospects' :
$donationhistorylist = array ( 'never' => 'Never donated/sponsored' , 'past' => 'Donated/sponsored in the past' , 'lastyear' => 'Donated/sponsored last year' , 'thisyear' => 'Donated/sponsored this year' );
$emailaddresslist = array ( 'available' => 'Available' , 'notavaialble' => 'Not Available' );
$rolelist = array (
'judge' => 'Judge' ,
'teacher' => 'Teacher' ,
'sciencehead' => 'School Science Head' ,
'principal' => 'School Principal' ,
'parent' => 'Parent' ,
'committee' => 'Committee' ,
'volunteer' => 'Volunteer' ,
'alumni' => 'Alumni (not implemented)' ,
'mentor' => 'Mentor (not implemented)' ,
);
$campaign_id = intval ( $_GET [ 'id' ]);
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM fundraising_campaigns WHERE id=? AND fiscalyear=? " );
$q -> execute ([ $campaign_id , $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
$campaign = $q -> fetch ( PDO :: FETCH_OBJ );
if ( $campaign -> filterparameters ) {
echo '<h4>' . i18n ( 'User List' ) . " </h4> \n " ;
$params = unserialize ( $campaign -> filterparameters );
echo '<table class="tableedit">' ;
echo '<tr><td>' . i18n ( 'Donor Type' ) . '</td><td>' . i18n ( ucfirst ( $params [ 'donortype' ])) . " </td></tr> \n " ;
if ( is_array ( $params [ 'donationhistory' ])) {
echo '<tr><td>' . i18n ( 'Donation History' ) . '</td><td>' ;
foreach ( $params [ 'donationhistory' ] AS $d ) {
echo i18n ( $donationhistorylist [ $d ]) . " <br /> \n " ;
}
echo " </td></tr> \n " ;
}
// echo "<tr><td>".i18n("Donation Level")."</td><td>";
// echo "</td></tr>\n";
if ( is_array ( $params [ 'emailaddress' ])) {
echo '<tr><td>' . i18n ( 'Email Address' ) . '</td><td>' ;
foreach ( $params [ 'emailaddress' ] AS $e ) {
echo i18n ( $emailaddresslist [ $e ]) . " <br /> \n " ;
}
echo " </td></tr> \n " ;
}
if ( $params [ 'donortype' ] == 'individual' && is_array ( $params [ 'individual_type' ])) {
echo '<tr><td>' . i18n ( 'Role' ) . '</td><td>' ;
foreach ( $params [ 'individual_type' ] AS $e ) {
echo i18n ( $rolelist [ $e ]) . " <br /> \n " ;
}
echo " </td></tr> \n " ;
} else if ( is_array ( $params [ 'contacttype' ])) {
echo '<tr><td>' . i18n ( 'Role' ) . '</td><td>' ;
foreach ( $params [ 'contacttype' ] AS $e ) {
echo i18n ( ucfirst ( $e )) . '<br />' ;
}
echo " </td></tr> \n " ;
}
echo " </table> \n " ;
// params: individual/org
// donation history
// donation level
// email address
// role ind
// role org
echo '<br />' ;
echo " <form id= \" prospectremoveform \" onsubmit= \" return removeselectedprospects() \" > \n " ;
echo " <input type= \" hidden \" name= \" fundraising_campaigns_id \" value= \" $campaign_id\ " /> \n " ;
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM fundraising_campaigns_users_link WHERE fundraising_campaigns_id=? " );
$q -> execute ([ $campaign_id ]);
2025-01-29 03:30:48 +00:00
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
$u = user_load_by_uid ( $r -> users_uid );
// hopefully this never returns false, but who knows..
if ( $u ) {
echo '<label>' ;
echo " <input type= \" checkbox \" name= \" prospectremovefromlist[] \" value= \" { $u [ 'uid' ] } \" /> " ;
if ( $u [ 'sponsor' ][ 'donortype' ] == 'organization' ) {
echo $u [ 'sponsor' ][ 'organization' ] . ' - ' ;
}
echo $u [ 'firstname' ] . ' ' . $u [ 'lastname' ];
if ( $u [ 'email' ])
echo " < { $u [ 'email' ] } > " ;
echo " </label> \n " ;
echo '<br />' ;
}
}
echo '<br />' ;
echo '<br />' ;
echo '<table><tr><td>' ;
echo '<input onclick="return prospect_removeselected()" type="button" value="' . i18n ( 'Remove selected prospects from list' ) . " \" > \n " ;
echo '</td><td>' ;
echo '<input onclick="return prospect_removeall()" type="button" value="' . i18n ( 'Remove all prospects from list' ) . " \" > \n " ;
// echo "</td><td>";
// echo "<input type=\"button\" value=\"".i18n("Finalize prospect list")."\">\n";
echo " </td></tr></table> \n " ;
} else {
?>
< h4 >< ? = i18n ( 'Choose Prospects' ) ?> </h4>
2009-10-11 03:32:14 +00:00
< form id = " prospectform " onsubmit = " return prospect_generatelist() " >
2025-01-29 03:30:48 +00:00
< input type = " hidden " name = " fundraising_campaigns_id " value = " <?= $campaign_id ?> " />
2009-10-08 22:42:38 +00:00
< table >
2025-01-29 03:30:48 +00:00
< tr >< td style = " width: 130px; " >< ? = i18n ( 'Type' ) ?> :</td><td>
< label >< input type = " radio " name = " donortype " value = " organization " onchange = " donortypechange() " >< ? = i18n ( 'Organization' ) ?> </label><br />
< label >< input type = " radio " name = " donortype " value = " individual " onchange = " donortypechange() " >< ? = i18n ( 'Individual' ) ?> </label><br />
2009-10-08 22:42:38 +00:00
</ td ></ tr >
</ table >
< div id = " prospect_common " style = " display: none; " >
< hr />
< table >
2025-01-29 03:30:48 +00:00
< tr >< td style = " width: 130px; " >< ? = i18n ( 'Donation History' ) ?> :</td><td>
2009-10-11 18:19:04 +00:00
< ?
2025-01-29 03:30:48 +00:00
foreach ( $donationhistorylist AS $k => $v ) {
echo " <label><input onchange= \" return prospect_search() \" type= \" checkbox \" name= \" donationhistory[] \" value= \" $k\ " > " . i18n( $v ) . " </ label >< br /> \n " ;
}
?>
2009-10-08 22:42:38 +00:00
</ td ></ tr >
2025-01-29 03:30:48 +00:00
< tr >< td >< ? = i18n ( 'Donation Level' ) ?> :</td><td>
2009-10-08 22:42:38 +00:00
< ?
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM fundraising_donor_levels WHERE fiscalyear=? ORDER BY min " );
$q -> execute ([ $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
echo " <label><input onchange= \" return prospect_search() \" disabled= \" disabled \" type= \" checkbox \" name= \" donationlevel[] \" value= \" $r->level\ " > " . i18n( $r->level ) . ' (' . format_money( $r->min , false) . ' - ' . format_money( $r->max , false) . " ) </ label >< br /> \n " ;
2009-10-08 22:42:38 +00:00
}
2025-01-29 03:30:48 +00:00
echo '(disabled until the logic requirements can be established)' ;
2009-10-08 22:42:38 +00:00
?>
</ td ></ tr >
2025-01-29 03:30:48 +00:00
< tr >< td >< ? = i18n ( 'Email Address' ) ?> :</td><td>
2009-10-11 18:19:04 +00:00
< ?
2025-01-29 03:30:48 +00:00
foreach ( $emailaddresslist AS $k => $v ) {
echo " <label><input onchange= \" return prospect_search() \" type= \" checkbox \" name= \" emailaddress[] \" value= \" $k\ " > " . i18n( $v ) . " </ label >< br /> \n " ;
}
?>
2009-10-08 22:42:38 +00:00
</ td ></ tr >
</ table >
</ div >
2009-10-07 21:49:49 +00:00
2009-10-08 22:42:38 +00:00
< div id = " prospect_individual " style = " display: none; " >
< table >
2025-01-29 03:30:48 +00:00
< tr >< td style = " width: 130px; " >< ? = i18n ( 'Role' ) ?> :</td><td>
2009-10-11 18:19:04 +00:00
< ?
2025-01-29 03:30:48 +00:00
foreach ( $rolelist AS $k => $v ) {
echo " <label><input onchange= \" return prospect_search() \" type= \" checkbox \" name= \" individual_type[] \" value= \" $k\ " > " . i18n( $v ) . " </ label >< br /> \n " ;
}
?>
2009-10-11 18:19:04 +00:00
2009-10-08 22:42:38 +00:00
</ td ></ tr ></ table >
</ div >
2009-10-07 21:49:49 +00:00
2009-10-08 22:42:38 +00:00
< div id = " prospect_organization " style = " display: none; " >
< table >
2025-01-29 03:30:48 +00:00
< tr >< td style = " width: 130px; " >< ? = i18n ( 'Role' ) ?> :</td><td>
< label >< input onchange = " return prospect_search() " type = " checkbox " name = " contacttype[] " value = " primary " >< ? = i18n ( 'Primary contacts' ) ?> </label><br />
< label >< input onchange = " return prospect_search() " type = " checkbox " name = " contacttype[] " value = " secondary " >< ? = i18n ( 'Secondary contacts' ) ?> </label><br />
2009-10-08 22:42:38 +00:00
</ td ></ tr ></ table >
</ div >
< hr />
< div id = " prospectsearchresults " ></ div >
</ form >
< ?
2025-01-29 03:30:48 +00:00
}
exit ;
break ;
2009-10-07 21:49:49 +00:00
2025-01-29 03:30:48 +00:00
case 'manage_tab_communications' :
$campaign_id = intval ( $_GET [ 'id' ]);
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM fundraising_campaigns WHERE id=? AND fiscalyear=? " );
$q -> execute ([ $campaign_id , $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
if ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
}
$communications = array ( 'initial' => 'Initial Communication' ,
'followup' => 'Follow-Up Communication' );
2009-10-07 21:49:49 +00:00
2025-01-29 03:30:48 +00:00
foreach ( $communications as $key => $name ) {
echo '<h4>' . i18n ( $name ) . " </h4> \n " ;
// check if they have one in the emails database
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM emails WHERE fundraising_campaigns_id=? AND val=? " );
$q -> execute ([ $campaign_id , $key ]);
2025-01-29 03:30:48 +00:00
if ( $email = $q -> fetch ( PDO :: FETCH_OBJ )) {
echo '<div style="float: right; margin-right: 15px;">' ;
echo " <a title= \" Edit \" href= \" # \" onclick= \" return opencommunicationeditor(null, $email->id , $campaign_id ) \" ><img src= \" " . $config [ 'SFIABDIRECTORY' ] . '/images/16/edit.' . $config [ 'icon_extension' ] . '" border=0></a>' ;
echo ' ' ;
echo " <a title= \" Remove \" onClick= \" return removecommunication( $email->id ); \" href= \" \" ><img src= \" " . $config [ 'SFIABDIRECTORY' ] . '/images/16/button_cancel.' . $config [ 'icon_extension' ] . '" border=0></a>' ;
echo '</div>' ;
echo '<table cellspacing=0 cellpadding=3 border=1 style="margin-left: 30px; margin-right: 30px; width: 700px;">' ;
echo '<tr><td>' . i18n ( 'Subject' ) . '</td><td>' . htmlspecialchars ( $email -> subject ) . " </td></tr> \n " ;
echo '<tr><td>' . i18n ( 'From' ) . '</td><td>' . htmlspecialchars ( $email -> from ) . " </td></tr> \n " ;
echo '<tr><td colspan="2">' . $email -> bodyhtml . " </td></tr> \n " ;
echo '<tr><td colspan="2">' ;
echo '<table style="width: 100%;"><tr>' ;
echo '<td style="text-align: center;">' ;
// we let them always send it again for now... might change this back later, but i think just notifying them of when it was last sent is enough and keeps teh form more consistent
echo " <input type= \" button \" onclick= \" return opensendemaildialog( $campaign_id , $email->id ) \" value= \" " . i18n ( 'Send as email' ) . '" />' ;
echo " <br /> \n " ;
if ( $email -> lastsent ) {
list ( $date , $time ) = split ( ' ' , $email -> lastsent );
echo i18n ( 'Last Sent' );
echo '<br />' . format_date ( $date );
echo '<br />' . format_time ( $time );
}
echo " </td> \n " ;
echo " <td style= \" text-align: center; \" ><input type= \" button \" onclick= \" return opensendmaildialog( $campaign_id ,' $key ') \" value= \" " . i18n ( 'Generate PDF for mailing' ) . " \" /></td> \n " ;
echo " <td style= \" text-align: center; \" ><input type= \" button \" onclick= \" return opensendlabelsdialog(47, $campaign_id ) \" value= \" " . i18n ( 'Generate mailing labels' ) . " \" /></td> \n " ;
echo " </tr></table> \n " ;
echo " </td></tr> \n " ;
echo " </table> \n " ;
} else {
echo " <ul> \n " ;
echo " <li><a href= \" # \" onclick= \" return opencommunicationchooser(' $key '); \" > " . i18n ( 'Start from an existing communication' ) . " </a></li> \n " ;
echo " <li><a href= \" # \" onclick= \" return opencommunicationeditor(' $key ',null, $campaign_id ); \" > " . i18n ( 'Create a new communication' ) . " </a></li> \n " ;
echo " </ul> \n " ;
}
echo '<br />' ;
}
exit ;
break ;
case 'prospect_removeselected' :
$campaignid = intval ( $_POST [ 'fundraising_campaigns_id' ]);
print_r ( $_POST );
if ( is_array ( $_POST [ 'prospectremovefromlist' ])) {
$uidlist = implode ( ',' , $_POST [ 'prospectremovefromlist' ]);
2025-02-09 17:24:37 +00:00
$query = " DELETE FROM fundraising_campaigns_users_link WHERE fundraising_campaigns_id=? AND users_uid IN ( $uidlist ) " ;
2025-01-29 03:30:48 +00:00
$stmt = $pdo -> prepare ( $query );
2025-02-09 17:24:37 +00:00
$stmt -> execute ([ $campaignid ]);
2025-01-29 03:30:48 +00:00
show_pdo_errors_if_any ( $pdo );
}
// if theres nobody left in the list we need to reset the filter params as well
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT COUNT(*) AS num FROM fundraising_campaigns_users_link WHERE fundraising_campaigns_id=? " );
$q -> execute ([ $campaignid ]);
2025-01-29 03:30:48 +00:00
$r = $q -> fetch ( PDO :: FETCH_OBJ );
if ( $r -> num == 0 ) {
2025-02-09 17:24:37 +00:00
$stmt = $pdo -> prepare ( " UPDATE fundraising_campaigns SET filterparameters=NULL WHERE id=? " );
$stmt -> execute ([ $campaignid ]);
2024-12-08 02:49:02 -05:00
}
2009-10-11 18:19:04 +00:00
2025-01-29 03:30:48 +00:00
happy_ ( 'Selected users removed from list' );
exit ;
break ;
2009-10-11 18:19:04 +00:00
2025-01-29 03:30:48 +00:00
case 'prospect_removeall' :
$campaignid = intval ( $_POST [ 'fundraising_campaigns_id' ]);
2025-02-09 17:24:37 +00:00
$stmt = $pdo -> prepare ( " DELETE FROM fundraising_campaigns_users_link WHERE fundraising_campaigns_id=? " );
$stmt -> execute ([ $campaignid ]);
$stmt = $pdo -> prepare ( " UPDATE fundraising_campaigns SET filterparameters=NULL WHERE id=? " );
$stmt -> execute ([ $campaignid ]);
2025-01-29 03:30:48 +00:00
happy_ ( 'All users removed from list' );
exit ;
break ;
case 'communication_remove' :
$emails_id = $_POST [ 'id' ];
// check if its been sent, if so, it cannot be deleted, sorry!
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM emails WHERE id=? " );
$q -> execute ([ $emails_id ]);
2025-01-29 03:30:48 +00:00
$e = $q -> fetch ( PDO :: FETCH_OBJ );
if ( $e -> lastsent ) {
error_ ( 'Cannot remove an email that has already been sent' );
} else {
2025-02-09 17:24:37 +00:00
$stmt = $pdo -> prepare ( " DELETE FROM emails WHERE id=? " );
$stmt -> execute ([ $emails_id ]);
2025-01-29 03:30:48 +00:00
happy_ ( 'Communicaton removed' );
}
2009-10-12 20:25:02 +00:00
2025-01-29 03:30:48 +00:00
break ;
2009-10-06 21:32:13 +00:00
}
2025-01-29 03:30:48 +00:00
function save_campaign_info ()
{
2025-01-28 14:58:54 -05:00
global $config , $pdo ;
2025-01-29 03:30:48 +00:00
if ( ! $_POST [ 'name' ]) {
error_ ( 'Appeal Name is required' );
return ;
2009-10-07 19:43:58 +00:00
}
2025-01-29 03:30:48 +00:00
if ( ! $_POST [ 'startdate' ])
$startdate = date ( 'Y-m-d' );
else
$startdate = $_POST [ 'startdate' ];
2009-10-07 19:43:58 +00:00
2025-01-29 03:30:48 +00:00
if ( ! $_GET [ 'id' ]) {
2025-02-09 17:24:37 +00:00
$query = " INSERT INTO fundraising_campaigns (name, fiscalyear) VALUES (?,?) " ;
2025-01-28 14:58:54 -05:00
echo $query ;
2024-12-08 02:49:02 -05:00
$stmt = $pdo -> prepare ( $query );
2025-02-09 17:24:37 +00:00
$stmt -> execute ([ stripslashes ( $_POST [ 'name' ]), $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
$id = $pdo -> lastInsertId ();
happy_ ( 'Appeal Created' );
} else {
$id = $_GET [ 'id' ];
happy_ ( 'Appeal Saved' );
2009-10-07 19:43:58 +00:00
}
2024-12-08 02:49:02 -05:00
$stmt = $pdo -> prepare ( " UPDATE fundraising_campaigns SET
2025-02-09 17:24:37 +00:00
name = ? ,
`type` = ? ,
startdate = ? ,
followupdate = ? ,
enddate = ? ,
target = ? ,
fundraising_goal = ?
WHERE id = ? " );
$stmt -> execute ([ stripslashes ( $_POST [ 'name' ]), $_POST [ 'type' ], $startdate , $_POST [ 'followupdate' ], $_POST [ 'enddate' ], $_POST [ 'target' ], $_POST [ 'fundraising_goal' ], $id ]);
2009-10-06 21:32:13 +00:00
}
2025-01-29 03:30:48 +00:00
send_header ( 'Appeal Management' ,
array ( 'Committee Main' => 'committee_main.php' ,
'Administration' => 'admin/index.php' ,
'Fundraising' => 'admin/fundraising.php' ),
'fundraising' );
2009-10-01 21:03:56 +00:00
?>
2009-10-06 21:32:13 +00:00
2009-10-01 21:03:56 +00:00
< script type = " text/javascript " >
$ ( document ) . ready ( function () {
2009-10-07 22:00:56 +00:00
< ?
2025-01-29 03:30:48 +00:00
if ( get_value_from_array ( $_GET , 'manage_campaign' )) {
echo 'managecampaign(' . intval ( get_value_from_array ( $_GET , 'manage_campaign' )) . " ); \n " ;
} else {
2009-10-07 22:00:56 +00:00
echo " managecampaigns(); \n " ;
}
?>
2009-10-01 21:03:56 +00:00
});
2009-10-06 21:32:13 +00:00
2009-10-07 21:22:23 +00:00
function modifycampaigns () {
$ ( " #campaigndiv " ) . show ();
2025-01-29 03:30:48 +00:00
$ ( " #campaigndiv " ) . load ( " <? $_SERVER['PHP_SELF'] ?>?action=modify " , null , function () { modifycampaignsfinish ();});
2009-10-07 21:22:23 +00:00
}
function managecampaigns () {
$ ( " #campaigndiv " ) . show ();
2025-01-29 03:30:48 +00:00
$ ( " #campaigndiv " ) . load ( " <? $_SERVER['PHP_SELF'] ?>?action=managelist " , null , function () { managecampaignsfinish ();});
2009-10-07 21:22:23 +00:00
}
2009-10-07 21:44:32 +00:00
var currentcampaignid ;
2009-10-07 21:22:23 +00:00
function managecampaign ( id ) {
$ ( " #campaigndiv " ) . show ();
2025-01-29 03:30:48 +00:00
$ ( " #campaigndiv " ) . load ( " <? $_SERVER['PHP_SELF'] ?>?action=manage&id= " + id , null , function () { managecampaignfinish ();});
2009-10-07 21:44:32 +00:00
currentcampaignid = id ;
2009-10-07 19:43:58 +00:00
}
2009-10-07 21:22:23 +00:00
function modifycampaignsfinish (){
2009-10-07 19:43:58 +00:00
$ ( " #campaignaccordion " ) . accordion ();
2009-10-06 21:32:13 +00:00
// create the date pickers for our form
2009-10-07 19:43:58 +00:00
$ ( " .date " ) . datepicker ({
2009-10-06 21:32:13 +00:00
dateFormat : 'yy-mm-dd'
});
}
2009-10-07 21:22:23 +00:00
function managecampaignsfinish () {
}
function managecampaignfinish () {
2025-01-28 14:58:54 -05:00
$ ( " #editor_tabs " ) . tabs ({
2025-01-22 00:47:58 -05:00
create : function ( event , ui ) {
update_tab_overview ();
update_tab_donations ();
2009-10-07 21:49:49 +00:00
update_tab_prospects ();
2025-01-22 00:47:58 -05:00
update_tab_communications ();
},
selected : 0
});}
// function managecampaignfinish() {
// $("#campaign_tabs").tabs({
// show: function(event, ui) {
// switch(ui.panel.id) {
// case 'campaign_tab_overview':
// update_tab_overview();
// break;
// case 'campaign_tab_donations':
// update_tab_donations();
// break;
// case 'campaign_tab_prospects':
// update_tab_prospects();
// break;
// case 'campaign_tab_communications':
// update_tab_communications();
// break;
// }
// },
// selected: 0
// });}
2009-10-07 21:22:23 +00:00
2009-10-07 19:43:58 +00:00
function campaigninfo_save ( id ) {
2009-10-06 21:32:13 +00:00
//if we're creating we need to do the post, and get the id it returns, so we can re-open the popup window with that id
2009-10-07 19:43:58 +00:00
if ( id ==- 1 ) {
2025-01-29 03:30:48 +00:00
$ ( " #debug " ) . load ( " <? $_SERVER['PHP_SELF'] ?>?action=campaigninfo_save " , $ ( " #campaigninfo_new " ) . serializeArray (), function () { modifycampaigns (); });
2009-10-06 21:32:13 +00:00
} else {
2025-01-29 03:30:48 +00:00
$ ( " #debug " ) . load ( " <? $_SERVER['PHP_SELF'] ?>?action=campaigninfo_save&id= " + id , $ ( " #campaigninfo_ " + id ) . serializeArray (), function () { modifycampaigns (); });
2009-10-06 21:32:13 +00:00
}
return false ;
}
2009-10-07 21:44:32 +00:00
function update_tab_overview () {
2025-01-29 03:30:48 +00:00
$ ( " #campaign_tab_overview " ) . load ( " <? $_SERVER['PHP_SELF'] ?>?action=manage_tab_overview&id= " + currentcampaignid );
2009-10-07 21:44:32 +00:00
}
2009-10-07 21:49:49 +00:00
function update_tab_donations () {
2010-03-31 18:44:42 +00:00
$ ( " #campaign_tab_donations " ) . load (
2025-01-29 03:30:48 +00:00
" <? $_SERVER['PHP_SELF'] ?>?action=manage_tab_donations&id= " + currentcampaignid ,
2010-03-31 18:44:42 +00:00
null ,
function (){ $ ( '.tableview' ) . tablesorter ();}
);
2009-10-07 21:49:49 +00:00
}
function update_tab_prospects () {
2025-01-29 03:30:48 +00:00
$ ( " #campaign_tab_prospects " ) . load ( " <? $_SERVER['PHP_SELF'] ?>?action=manage_tab_prospects&id= " + currentcampaignid );
2009-10-07 21:49:49 +00:00
}
function update_tab_communications () {
2025-01-29 03:30:48 +00:00
$ ( " #campaign_tab_communications " ) . load ( " <? $_SERVER['PHP_SELF'] ?>?action=manage_tab_communications&id= " + currentcampaignid );
2009-10-07 21:49:49 +00:00
}
2009-10-08 22:42:38 +00:00
function donortypechange () {
if ( $ ( " input[@name='donortype']:checked " ) . val () == " organization " ) {
$ ( " #prospect_common " ) . show ( 'slow' );
$ ( " #prospect_organization " ) . show ( 'slow' );
$ ( " #prospect_individual " ) . hide ( 'slow' );
}
else if ( $ ( " input[@name='donortype']:checked " ) . val () == " individual " ) {
$ ( " #prospect_common " ) . show ( 'slow' );
$ ( " #prospect_organization " ) . hide ( 'slow' );
$ ( " #prospect_individual " ) . show ( 'slow' );
}
else {
$ ( " #prospect_common " ) . hide ( 'slow' );
}
prospect_search ();
}
function prospect_search () {
$ ( " #prospectsearchresults " ) . load ( " fundraising_campaigns_prospecting.php " , $ ( " #prospectform " ) . serializeArray ());
return false ;
}
2009-10-11 03:32:14 +00:00
function prospect_generatelist () {
2009-10-11 18:19:04 +00:00
$ ( " #prospectsearchresults " ) . load ( " fundraising_campaigns_prospecting.php?generatelist=true " , $ ( " #prospectform " ) . serializeArray (), function () {
update_tab_prospects ();
});
return false ;
}
function prospect_removeselected () {
$ ( " #debug " ) . load ( " fundraising_campaigns.php?action=prospect_removeselected " , $ ( " #prospectremoveform " ) . serializeArray (), function () {
update_tab_prospects ();
});
return false ;
}
function prospect_removeall () {
$ ( " #debug " ) . load ( " fundraising_campaigns.php?action=prospect_removeall " , $ ( " #prospectremoveform " ) . serializeArray (), function () {
update_tab_prospects ();
});
2009-10-11 03:32:14 +00:00
return false ;
}
2009-10-14 04:56:28 +00:00
var comm_chooser_key = null ;
function opencommunicationchooser ( key ) {
comm_chooser_key = key ;
2009-10-14 03:25:47 +00:00
$ ( " #dialog " ) . empty ();
2009-10-14 04:56:28 +00:00
$ ( " #dialog " ) . load ( " communication.php?action=dialog_choose&type=fundraising " , null , function () {
2009-10-12 20:25:02 +00:00
});
}
function removecommunication ( id ) {
$ ( " #debug " ) . load ( " fundraising_campaigns.php?action=communication_remove " ,{ id : id }, function () {
update_tab_communications ();
});
return false ;
}
function comm_dialog_choose_select ( id ) {
2009-10-14 04:56:28 +00:00
// alert('im back with email id: '+id);
2009-10-12 20:25:02 +00:00
//get rid of hte html
2009-10-14 04:56:28 +00:00
var key = comm_chooser_key ;
2009-10-14 03:25:47 +00:00
$ ( " #dialog " ) . empty ();
2009-10-14 04:56:28 +00:00
$ ( " #dialog " ) . load ( " communication.php?action=dialog_edit&cloneid= " + id + " &key= " + key + " &fundraising_campaigns_id= " + currentcampaignid , null , function () {
2009-10-12 20:25:02 +00:00
});
}
function comm_dialog_choose_cancel () {
2009-10-14 04:56:28 +00:00
// alert('im cancelled');
}
function comm_dialog_edit_save ( id ) {
// alert("saved!");
update_tab_communications ();
}
function comm_dialog_edit_cancel () {
// alert("cancelled!");
2009-10-12 20:25:02 +00:00
}
2009-10-16 17:17:45 +00:00
function opensendlabelsdialog ( reports_id , fcid ) {
2009-10-15 07:11:43 +00:00
$ ( " #dialog " ) . empty ();
2009-10-16 18:18:38 +00:00
var args = " action=dialog_gen&sid= " + reports_id + " &filter[0][field]=fundraising_campaigns_id&filter[0][x]=0&filter[0][value]= " + fcid ;
2009-10-16 17:17:45 +00:00
$ ( " #dialog " ) . load ( " reports_gen.php? " + args , null , function () {
2009-10-15 07:11:43 +00:00
});
}
2009-10-16 05:22:43 +00:00
function opensendmaildialog ( fcid , key ) {
var dlargs = " fundraising_campaigns_id= " + fcid + " &key= " + key ;
2025-01-29 03:30:48 +00:00
var dlurl = " <?= $config['SFIABDIRECTORY'] ?>/admin/reports_appeal_letters.php? " + dlargs ;
2009-10-16 18:18:38 +00:00
window . location . href = dlurl ;
// $('#content').attr('src',dlurl);
2009-10-16 05:22:43 +00:00
return false ;
}
2009-10-15 07:11:43 +00:00
2009-12-01 22:02:03 +00:00
function opensendemaildialog ( fcid , emails_id ) {
$ ( " #dialog " ) . empty ();
$ ( " #dialog " ) . load ( " communication.php?action=dialog_send&type=fundraising&fundraising_campaigns_id= " + fcid + " &emails_id= " + emails_id , null , function () {
});
2009-10-22 17:08:50 +00:00
}
2009-10-01 21:03:56 +00:00
</ script >
2009-10-06 21:32:13 +00:00
2009-10-07 19:43:58 +00:00
< ?
2025-01-29 03:30:48 +00:00
function display_campaign_form ( $r = null )
{
2009-10-07 19:43:58 +00:00
global $config ;
2009-10-08 19:13:14 +00:00
global $campaign_types ;
2025-01-05 16:04:50 -05:00
global $pdo ;
2025-01-29 03:30:48 +00:00
?>
2009-10-06 21:32:13 +00:00
< tr >
2025-01-29 03:30:48 +00:00
< td >< ? = i18n ( 'Name' ) ?> </td>
< td colspan = " 3 " >< input size = " 40 " type = " text " name = " name " value = " <?= get_value_property_or_default( $r , 'name') ?> " ></ td >
< td >< ? = i18n ( 'Type' ) ?> </td><td>
2009-10-08 19:13:14 +00:00
< select name = " type " >
2025-01-29 03:30:48 +00:00
< option value = " " >< ? = i18n ( 'Choose' ) ?> </option>
2009-10-08 19:13:14 +00:00
< ?
2025-01-29 03:30:48 +00:00
foreach ( $campaign_types AS $ct ) {
if ( $r -> type == $ct )
$sel = 'selected="selected"' ;
else
$sel = '' ;
echo " <option $sel value= \" $ct\ " > " . i18n( $ct ) . " </ option > \n " ;
2009-10-08 19:13:14 +00:00
}
?>
</ select >
</ td >
2009-10-07 19:43:58 +00:00
</ tr >
< ?
2025-01-29 03:30:48 +00:00
if ( get_value_property_or_default ( $r , 'startdate' ))
$sd = $r -> startdate ;
else
$sd = date ( 'Y-m-d' );
2009-10-07 19:43:58 +00:00
?>
< tr >
2025-01-29 03:30:48 +00:00
< td >< ? = i18n ( 'Start Date' ) ?> </td><td><input type="text" name="startdate" class="date" value="<?= $sd ?>" /></td>
< td >< ? = i18n ( 'Follow-Up Date' ) ?> </td><td><input type="text" name="followupdate" class="date" value="<?= get_value_property_or_default($r, 'followupdate') ?>" /></td>
< td >< ? = i18n ( 'End Date' ) ?> </td><td><input type="text" name="enddate" class="date" value="<?= get_value_property_or_default($r, 'enddate') ?>" /></td>
2009-10-07 19:43:58 +00:00
</ tr >
< tr >
2025-01-29 03:30:48 +00:00
< td >< ? = i18n ( 'Target' ) ?> </td><td>$<input type="text" id="target" name="target" size="10" value="<?= get_value_property_or_default($r, 'target') ?>" /></td>
< td >< ? = i18n ( 'Default Purpose' ) ?> </td><td colspan="3">
2009-10-07 19:43:58 +00:00
< ?
2025-02-09 17:24:37 +00:00
$fgq = $pdo -> prepare ( " SELECT * FROM fundraising_goals WHERE fiscalyear=? ORDER BY name " );
$fgq -> execute ([ $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
echo '<select name="fundraising_goal">' ;
echo '<option value="">' . i18n ( 'Choose Default Purpose' ) . " </option> \n " ;
while ( $fgr = $fgq -> fetch ( PDO :: FETCH_OBJ )) {
if ( $r -> fundraising_goal == $fgr -> goal )
$sel = 'selected="selected"' ;
else
$sel = '' ;
echo " <option $sel value= \" $fgr->goal\ " > " . i18n( $fgr->name ) . " </ option > \n " ;
2009-10-07 19:43:58 +00:00
}
echo " </select> \n " ;
?>
</ td >
</ tr >
< ?
}
?>
2009-10-07 21:22:23 +00:00
< table cellspacing = 2 width = 740 border = 0 >
< tr >< td >
2009-10-09 20:25:01 +00:00
< a href = " # " onclick = " modifycampaigns() " > Create / Modify Appeals </ a >
2009-10-07 21:22:23 +00:00
</ td >< td >
2009-10-09 20:25:01 +00:00
< a href = " # " onclick = " managecampaigns() " > Appeal Management </ a >
2009-10-07 21:22:23 +00:00
</ td ></ tr ></ table >
< hr />
2009-10-12 20:25:02 +00:00
< div id = " campaigndiv " style = " width: 780px; display: none; " ></ div >
< div id = " dialog " style = " width: 780px; display: none; " ></ div >
2009-10-07 19:43:58 +00:00
2009-10-01 21:03:56 +00:00
< ?
2025-01-29 03:30:48 +00:00
send_footer ();
2009-10-01 21:03:56 +00:00
?>