2009-10-02 19:21:43 +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-02 19:21:43 +00:00
?>
< ?
2025-01-29 03:30:48 +00:00
require ( '../common.inc.php' );
require_once ( '../user.inc.php' );
user_auth_required ( 'committee' , 'admin' );
// first, insert any default fundraising donor levels
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM fundraising_donor_levels WHERE fiscalyear=? " );
$q -> execute ([ $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
if ( ! $q -> rowCount ()) {
$q = $pdo -> prepare ( " SELECT * FROM fundraising_donor_levels WHERE fiscalyear='-1' " );
$q -> execute ();
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
2025-02-09 18:41:20 +00:00
$stmt = $pdo -> prepare ( " INSERT INTO fundraising_donor_levels (`level`,`min`,`max`,`description`,`fiscalyear`) VALUES (
2025-02-09 17:24:37 +00:00
? ,
? ,
? ,
? ,
? ) ' ) " );
2025-01-29 03:30:48 +00:00
2025-02-09 18:41:20 +00:00
$stmt -> execute ([ $r -> level , $r -> min , $r -> max , $r -> description , $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
}
}
2009-10-06 19:04:45 +00:00
2025-01-29 03:30:48 +00:00
// first, insert any default fundraising goals
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM fundraising_goals WHERE fiscalyear=? " );
$q -> execute ([ $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
if ( ! $q -> rowCount ()) {
$q = $pdo -> prepare ( " SELECT * FROM fundraising_goals WHERE fiscalyear='-1' " );
$q -> execute ();
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
$stmt = $pdo -> prepare ( " INSERT INTO fundraising_goals (`goal`,`name`,`description`,`system`,`budget`,`fiscalyear`) VALUES (
2025-02-09 17:24:37 +00:00
? ,
? ,
? ,
? ,
? ,
? ) " );
$stmt -> execute ([ stripslashes ( $r -> goal ), stripslashes ( $r -> name ), stripslashes ( $r -> description ), $r -> system , $r -> budget , $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
}
}
2009-10-02 19:21:43 +00:00
2025-01-29 03:30:48 +00:00
switch ( get_value_from_array ( $_GET , 'gettab' )) {
case 'levels' :
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM fundraising_donor_levels WHERE fiscalyear=? ORDER BY max " );
$q -> execute ([ $config [ 'FISCALYEAR' ]]);
2024-12-06 20:54:02 -05:00
echo " <div id= \" levelaccordion \" style= \" width: 75%; \" > \n " ;
2025-01-29 03:30:48 +00:00
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
echo " <h3><a href= \" # \" > $r->level ( " . format_money ( $r -> min , false ) . ' to ' . format_money ( $r -> max , false ) . " )</a></h3> \n " ;
echo " <div id= \" level_ $r->id\ " > \n " ;
2009-10-02 19:21:43 +00:00
echo " <form id= \" level_form_ $r->id\ " onsubmit = \ " return level_save( $r->id ) \" > \n " ;
echo " <input type= \" hidden \" name= \" id \" value= \" $r->id\ " > \n " ;
2025-01-29 03:30:48 +00:00
echo '<table style="width: 100%;">' ;
echo '<tr><td>' ;
echo i18n ( 'Level Name' ) . ':</td><td><input type="text" size="40" name="level" value="' . htmlspecialchars ( $r -> level ) . " \" ></td></tr> \n " ;
echo '<tr><td>' ;
echo i18n ( 'Value Range' ) . " :</td><td> \$ <input size= \" 5 \" type= \" text \" name= \" min \" value= \" $r->min\ " > to \ $ < input size = \ " 5 \" type= \" text \" name= \" max \" value= \" $r->max\ " >< br /> \n " ;
2009-10-02 20:47:04 +00:00
echo " </td></tr> \n " ;
2025-01-29 03:30:48 +00:00
echo '<tr><td colspan="2">' ;
echo i18n ( 'Description/Benefits' ) . ':<br /><textarea name="description" rows="4" style="width: 100%;">' . htmlspecialchars ( $r -> description ) . '</textarea>' ;
2009-10-02 20:47:04 +00:00
echo " </td></tr> \n " ;
echo " </table> \n " ;
2025-01-29 03:30:48 +00:00
echo '<table style="width: 100%;"><tr><td style="width: 50%; text-align: center;">' ;
echo '<input type="submit" value="' . i18n ( 'Save Level' ) . '" >' ;
echo '</td><td style="width: 50%; text-align: right;">' ;
echo '<input type="button" value="' . i18n ( 'Delete Level' ) . " \" onclick= \" return level_delete( $r->id ) \" > " ;
2009-10-02 20:47:04 +00:00
echo " </td></tr></table> \n " ;
2025-01-29 03:30:48 +00:00
echo '</form>' ;
echo " </div> \n " ;
}
echo " <h3><a href= \" # \" >Create New Level</a></h3> \n " ;
echo " <div id= \" level_new \" > \n " ;
echo " <form id= \" level_form \" onsubmit= \" return level_save() \" > \n " ;
echo '<table style="width: 100%;">' ;
echo '<tr><td>' ;
echo i18n ( 'Level Name' ) . " :</td><td><input type= \" text \" size= \" 40 \" name= \" level \" ></td></tr> \n " ;
echo '<tr><td>' ;
echo i18n ( 'Value Range' ) . " :</td><td> \$ <input size= \" 5 \" type= \" text \" name= \" min \" > to \$ <input size= \" 5 \" type= \" text \" name= \" max \" ><br /> \n " ;
echo " </td></tr> \n " ;
echo '<tr><td colspan="2">' ;
echo i18n ( 'Description/Benefits' ) . ':<br /><textarea name="description" rows="4" style="width: 100%;"></textarea>' ;
echo " </td></tr> \n " ;
echo " </table> \n " ;
2009-10-02 20:47:04 +00:00
2025-01-29 03:30:48 +00:00
echo '<table style="width: 100%;"><tr><td style="width: 50%; text-align: center;">' ;
echo '<input type="submit" value="' . i18n ( 'Create Level' ) . '">' ;
echo '</td><td style="width: 50%; text-align: right;">' ;
echo " </td></tr></table> \n " ;
echo " </form> \n " ;
echo " </div> \n " ;
2009-10-02 19:21:43 +00:00
2025-01-29 03:30:48 +00:00
echo " </div> \n " ;
2009-10-02 19:21:43 +00:00
2025-01-29 03:30:48 +00:00
exit ;
break ;
2009-10-02 19:21:43 +00:00
2025-01-29 03:30:48 +00:00
case 'goals' :
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM fundraising_goals WHERE fiscalyear=? ORDER BY name " );
$q -> execute ([ $config [ 'FISCALYEAR' ]]);
2024-12-06 20:54:02 -05:00
echo " <div id= \" goalaccordion \" style= \" width: 75%; \" > \n " ;
2025-01-29 03:30:48 +00:00
while ( $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
echo " <h3><a href= \" # \" > $r->name ( " . format_money ( $r -> budget , false ) . ') Deadline: ' . format_date ( $r -> deadline ) . " </a></h3> \n " ;
echo " <div id= \" goal_ $r->id\ " > \n " ;
2009-10-02 20:47:04 +00:00
echo " <form id= \" goal_form_ $r->id\ " onsubmit = \ " return goal_save( $r->id ) \" > \n " ;
echo " <input type= \" hidden \" name= \" id \" value= \" $r->id\ " > \n " ;
2009-10-02 19:21:43 +00:00
2025-01-29 03:30:48 +00:00
echo '<table style="width: 100%;">' ;
echo '<tr><td>' ;
echo i18n ( 'Purpose' ) . ':</td><td><input type="text" size="40" name="name" value="' . htmlspecialchars ( $r -> name ) . " \" ></td></tr> \n " ;
echo '<tr><td>' ;
echo i18n ( 'Budget Amount' ) . " :</td><td> \$ <input size= \" 5 \" type= \" text \" name= \" budget \" value= \" $r->budget\ " ></ td ></ tr > " ;
echo '<tr><td>' ;
echo i18n ( 'Deadline' ) . " :</td><td><input size= \" 9 \" type= \" text \" name= \" deadline \" value= \" $r->deadline\ " ></ td ></ tr > " ;
echo '<tr><td colspan="2">' ;
echo i18n ( 'Description' ) . ':<br /><textarea name="description" rows="4" style="width: 100%;">' . htmlspecialchars ( $r -> description ) . '</textarea>' ;
2009-10-02 20:47:04 +00:00
echo " </td></tr> \n " ;
echo " </table> \n " ;
2025-01-29 03:30:48 +00:00
echo '<table style="width: 100%;"><tr><td style="width: 50%; text-align: center;">' ;
echo '<input type="submit" value="' . i18n ( 'Save Purpose' ) . '" >' ;
echo '</td><td style="width: 50%; text-align: right;">' ;
echo '<input type="button" value="' . i18n ( 'Delete Purpose' ) . " \" onclick= \" return goal_delete( $r->id ) \" > " ;
2009-10-02 20:47:04 +00:00
echo " </td></tr></table> \n " ;
2025-01-29 03:30:48 +00:00
echo '</form>' ;
echo " </div> \n " ;
}
echo " <h3><a href= \" # \" >Create New Purpose</a></h3> \n " ;
echo " <div id= \" goal_new \" > \n " ;
echo " <form id= \" goal_form \" onsubmit= \" return goal_save() \" > \n " ;
echo '<table style="width: 100%;">' ;
echo '<tr><td>' ;
echo i18n ( 'Purpose Name' ) . " :</td><td><input type= \" text \" size= \" 40 \" name= \" name \" ></td></tr> \n " ;
echo '<tr><td>' ;
echo i18n ( 'Budget Amount' ) . ':</td><td>$<input size="5" type="text" name="budget"></td></tr>' ;
echo '<tr><td>' ;
echo i18n ( 'Deadline' ) . ':</td><td><input size="9" type="text" name="deadline"></td></tr>' ;
echo '<tr><td colspan="2">' ;
echo i18n ( 'Description' ) . ':<br /><textarea name="description" rows="4" style="width: 100%;"></textarea>' ;
echo " </td></tr> \n " ;
echo " </table> \n " ;
2009-10-02 20:47:04 +00:00
2025-01-29 03:30:48 +00:00
echo '<table style="width: 100%;"><tr><td style="width: 50%; text-align: center;">' ;
echo '<input type="submit" value="' . i18n ( 'Create Purpose' ) . '">' ;
echo '</td><td style="width: 50%; text-align: right;">' ;
echo " </td></tr></table> \n " ;
echo " </form> \n " ;
echo " </div> \n " ;
2009-10-02 20:47:04 +00:00
2025-01-29 03:30:48 +00:00
echo " </div> \n " ;
2009-10-02 20:47:04 +00:00
2025-01-29 03:30:48 +00:00
exit ;
break ;
2009-10-08 19:13:14 +00:00
2025-01-29 03:30:48 +00:00
case 'setup' :
echo '<form id="setup_form" onsubmit="return setup_save()">' ;
echo '<table cellspacing=3 cellpadding=3>' ;
echo '<tr><td>' . i18n ( 'Current Fiscal Year' ) . '</td><td>' ;
2009-10-08 19:13:14 +00:00
echo $config [ 'FISCALYEAR' ];
echo " </td></tr> \n " ;
2025-01-29 03:30:48 +00:00
echo '<tr><td>' . i18n ( 'Fiscal Year End' ) . '</td><td>' ;
list ( $month , $day ) = explode ( '-' , $config [ 'fiscal_yearend' ]);
emit_month_selector ( 'fiscalendmonth' , $month );
emit_day_selector ( 'fiscalendday' , $day );
2009-10-08 19:13:14 +00:00
echo " </td></tr> \n " ;
2025-01-29 03:30:48 +00:00
echo '<tr><td>' . i18n ( 'Is your organization a registered charity?' ) . '</td>' ;
echo '<td>' ;
if ( $config [ 'registered_charity' ] == 'yes' )
$ch = 'checked="checked"' ;
else
$ch = '' ;
echo " <label><input $ch type= \" radio \" name= \" registeredcharity \" value= \" yes \" id= \" registeredcharity_yes \" onchange= \" charitychange() \" > " . i18n ( 'Yes' ) . '</label>' ;
echo ' ' ;
if ( $config [ 'registered_charity' ] == 'no' )
$ch = 'checked="checked"' ;
else
$ch = '' ;
echo " <label><input $ch type= \" radio \" name= \" registeredcharity \" value= \" no \" id= \" registeredcharity_no \" onchange= \" charitychange() \" > " . i18n ( 'No' ) . '</label>' ;
2009-10-08 19:13:14 +00:00
echo " </td></tr> \n " ;
2025-01-29 03:30:48 +00:00
echo '<tr>' ;
echo '<td>' . i18n ( 'Charity Registration Number' ) . " </td><td><input type= \" text \" name= \" charitynumber \" id= \" charitynumber \" value= \" { $config [ 'charity_number' ] } \" ></td> " ;
echo '</tr>' ;
echo '<tr><td colspan="2" style="text-align: center;"><input type="submit" value="' . i18n ( 'Save' ) . " \" ></td></tr> \n " ;
2009-10-08 19:13:14 +00:00
echo " </table> \n " ;
echo " </form> \n " ;
2025-01-29 03:30:48 +00:00
exit ;
break ;
}
switch ( get_value_from_array ( $_GET , 'action' )) {
case 'level_save' :
$id = $_POST [ 'id' ];
if ( ! ( $_POST [ 'level' ] && $_POST [ 'min' ] && $_POST [ 'max' ])) {
error_ ( 'Level name, minimum and maximum value range are required' );
exit ;
}
if ( $_POST [ 'min' ] >= $_POST [ 'max' ]) {
error_ ( 'Value range minimum must be smaller than range maximum' );
exit ;
}
if ( $id ) {
$stmt = $pdo -> prepare ( " UPDATE fundraising_donor_levels SET
2025-02-09 17:24:37 +00:00
min = ? ,
max = ? ,
level = ? ,
description = ?
WHERE id = ? AND fiscalyear = ?
2009-10-02 19:21:43 +00:00
" );
2025-02-09 17:24:37 +00:00
$stmt -> execute ([ $_POST [ 'min' ], $_POST [ 'max' ], stripslashes ( $_POST [ 'level' ]), stripslashes ( $_POST [ 'description' ]), $id , $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
happy_ ( 'Level Saved' );
} else {
$stmt = $pdo -> prepare ( " INSERT INTO fundraising_donor_levels (`level`,`min`,`max`,`description`,`fiscalyear`) VALUES (
2025-02-09 17:24:37 +00:00
? ,
? ,
? ,
? ,
? ) " );
$stmt -> execute ([ $_POST [ 'level' ], $_POST [ 'min' ], $_POST [ 'max' ], $_POST [ 'description' ], $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
happy_ ( 'Level Created' );
}
2009-10-02 20:47:04 +00:00
exit ;
break ;
2025-01-29 03:30:48 +00:00
case 'level_delete' :
$id = $_POST [ 'id' ];
2025-02-09 17:24:37 +00:00
$stmt = $pdo -> prepare ( " DELETE FROM fundraising_donor_levels WHERE id=? AND fiscalyear=? " );
$stmt -> execute ([ $id , $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
happy_ ( 'Level Deleted' );
exit ;
break ;
case 'goal_save' :
$id = $_POST [ 'id' ];
if ( ! ( $_POST [ 'name' ] && $_POST [ 'budget' ])) {
error_ ( 'Purpose name and budget are required' );
exit ;
}
if ( $id ) {
$stmt = $pdo -> prepare ( " UPDATE fundraising_goals SET
2025-02-09 17:24:37 +00:00
budget = ? ,
deadline = ? ,
name = ? ,
description = ?
WHERE id = ? AND fiscalyear = ?
2009-10-02 20:47:04 +00:00
" );
2025-02-09 17:24:37 +00:00
$stmt -> execute ([ $_POST [ 'budget' ], $_POST [ 'deadline' ], stripslashes ( $_POST [ 'name' ]), stripslashes ( $_POST [ 'description' ]), $id , $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
happy_ ( 'Purpose Saved' );
} else {
$goal = strtolower ( $_POST [ 'name' ]);
2025-02-10 03:39:30 +00:00
$goal = preg_replace ( '/[^a-z]/' , '' , $goal );
2025-01-29 03:30:48 +00:00
echo " SELECT * FROM fundraising_goals WHERE goal=' $goal ' AND fiscalyear=' { $config [ 'FISCALYEAR' ] } ' " ;
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM fundraising_goals WHERE goal=? AND fiscalyear=? " );
$q -> execute ([ $goal , $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
show_pdo_errors_if_any ( $pdo );
if ( $q -> rowCount ()) {
error_ ( 'The automatically generated purpose key (%1) generated from (%2) is not unique. Please try a different Purpose Name' , array ( $goal , $_POST [ 'name' ]));
exit ;
2009-10-02 20:47:04 +00:00
}
2025-01-29 03:30:48 +00:00
$stmt = $pdo -> prepare ( " INSERT INTO fundraising_goals (`goal`,`name`,`budget`,`deadline`,`description`,`fiscalyear`) VALUES (
2025-02-09 17:24:37 +00:00
? ,
? ,
? ,
? ,
? ,
? ) " );
$stmt -> execute ([ $goal , $_POST [ 'name' ], $_POST [ 'budget' ], $_POST [ 'deadline' ], $_POST [ 'description' ], $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
happy_ ( 'Purpose Created' );
}
2009-10-02 19:21:43 +00:00
exit ;
break ;
2025-01-29 03:30:48 +00:00
case 'goal_delete' :
$id = $_POST [ 'id' ];
// they cant delete system ones
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM fundraising_goals WHERE id=? AND fiscalyear=? " );
$q -> execute ([ $id , $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
if ( ! $r = $q -> fetch ( PDO :: FETCH_OBJ )) {
error_ ( 'Invalid goal to delete' );
exit ;
}
if ( $r -> system == 'yes' ) {
error_ ( 'Fundraising goals created automatically and used by the system cannot be deleted' );
exit ;
}
2025-02-09 17:24:37 +00:00
$q = $pdo -> prepare ( " SELECT * FROM fundraising_donations WHERE fundraising_goal=? AND fiscalyear=? " );
$q -> execute ([ $r -> goal , $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
if ( $q -> rowCount ()) {
error_ ( 'This goal already has donations assigned to it, it cannot be deleted' );
exit ;
}
2025-02-09 17:24:37 +00:00
$stmt = $pdo -> prepare ( " DELETE FROM fundraising_goals WHERE id=? AND fiscalyear=? " );
$stmt -> execute ([ $id , $config [ 'FISCALYEAR' ]]);
2025-01-29 03:30:48 +00:00
happy_ ( 'Purpose Deleted' );
exit ;
break ;
case 'setup_save' :
$fye = sprintf ( '%02d-%02d' , intval ( $_POST [ 'fiscalendmonth' ]), intval ( $_POST [ 'fiscalendday' ]));
2025-02-09 17:24:37 +00:00
$stmt = $pdo -> prepare ( " UPDATE config SET val=? WHERE var='fiscal_yearend' AND year=? " );
$stmt -> execute ([ $fye , $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
2025-02-09 17:24:37 +00:00
$stmt = $pdo -> prepare ( " UPDATE config SET val=? WHERE var='registered_charity' AND year=? " );
$stmt -> execute ([ $_POST [ 'registeredcharity' ], $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
2025-02-09 17:24:37 +00:00
$stmt = $pdo -> prepare ( " UPDATE config SET val=? WHERE var='charity_number' AND year=? " );
$stmt -> execute ([ $_POST [ 'charitynumber' ], $config [ 'FAIRYEAR' ]]);
2025-01-29 03:30:48 +00:00
happy_ ( 'Fundraising module setup saved' );
exit ;
break ;
}
send_header ( 'Fundraising Setup' ,
array ( 'Committee Main' => 'committee_main.php' ,
'Administration' => 'admin/index.php' ,
'Fundraising' => 'admin/fundraising.php' ));
2009-10-02 19:21:43 +00:00
?>
< script type = " text/javascript " >
/* Setup the popup window */
$ ( document ) . ready ( function () {
$ ( " #editor_tabs " ) . tabs ({
2025-02-09 18:41:20 +00:00
create : function ( event , ui ) {
update_levels ();
update_goals ();
update_setup ();
},
activate : function ( event , ui ) {
2025-01-22 00:47:58 -05:00
update_levels ();
update_goals ();
update_setup ();
},
2025-02-09 18:41:20 +00:00
selected : 1
2025-01-22 00:47:58 -05:00
});
// $("#editor_tabs").tabs({
// show: function(event, ui) {
// switch(ui.panel.id) {
// case 'editor_tab_levels':
// update_levels();
// break;
// case 'editor_tab_goals':
// update_goals();
// break;
// break;
// case 'editor_tab_setup':
// update_setup();
// break;
// break;
// }
// },
// selected: 0
// });
2009-10-02 19:21:43 +00:00
2025-01-29 03:30:48 +00:00
// $("#organizationinfo_fundingselectiondate").datepicker({ dateFormat: 'yy-mm-dd', showOn: 'button', buttonText: "<?= i18n('calendar') ?>" });
2009-10-02 19:21:43 +00:00
});
function update_levels () {
$ ( " #editor_tab_levels " ) . load ( " fundraising_setup.php?gettab=levels " , null ,
function () {
2025-01-28 14:58:54 -05:00
$ ( " #levelaccordion " ) . accordion ({
heightStyle : " content "
});
2009-10-02 19:21:43 +00:00
}
);
}
function level_save ( id ) {
if ( id ) var f = $ ( " #level_form_ " + id );
else var f = $ ( " #level_form " );
$ ( " #debug " ) . load ( " fundraising_setup.php?action=level_save " , f . serializeArray (), function () { update_levels (); });
return false ;
}
2009-10-02 20:47:04 +00:00
function level_delete ( id ) {
if ( confirmClick ( 'Are you sure you want to delete this fundraising level?' )) {
var f = $ ( " #level_form_ " + id );
$ ( " #debug " ) . load ( " fundraising_setup.php?action=level_delete " , f . serializeArray (), function () { update_levels (); });
}
return false ;
}
2009-10-02 19:21:43 +00:00
function update_goals () {
2009-10-02 20:47:04 +00:00
$ ( " #editor_tab_goals " ) . load ( " fundraising_setup.php?gettab=goals " , null ,
function () {
2025-01-28 14:58:54 -05:00
$ ( " #goalaccordion " ) . accordion ({
heightStyle : " content "
});
2009-10-02 20:47:04 +00:00
$ ( " [name=deadline] " ) . datepicker ({ dateFormat : 'yy-mm-dd' });
}
);
}
2009-10-08 19:13:14 +00:00
function update_setup () {
$ ( " #editor_tab_setup " ) . load ( " fundraising_setup.php?gettab=setup " , null , function () { charitychange (); });
}
function setup_save () {
$ ( " #debug " ) . load ( " fundraising_setup.php?action=setup_save " , $ ( " #setup_form " ) . serializeArray (), function () { update_setup (); });
return false ;
}
2009-10-02 20:47:04 +00:00
function goal_save ( id ) {
if ( id ) var f = $ ( " #goal_form_ " + id );
else var f = $ ( " #goal_form " );
$ ( " #debug " ) . load ( " fundraising_setup.php?action=goal_save " , f . serializeArray (), function () { update_goals (); });
return false ;
2009-10-02 19:21:43 +00:00
}
2009-10-02 20:47:04 +00:00
function goal_delete ( id ) {
if ( confirmClick ( 'Are you sure you want to delete this fundraising goal?' )) {
var f = $ ( " #goal_form_ " + id );
$ ( " #debug " ) . load ( " fundraising_setup.php?action=goal_delete " , f . serializeArray (), function () { update_goals (); });
}
return false ;
}
2009-10-08 19:13:14 +00:00
function charitychange () {
2025-01-28 14:58:54 -05:00
if ( $ ( " input[name='registeredcharity']:checked " ) . val () == " yes " ) {
2009-10-08 19:13:14 +00:00
$ ( " #charitynumber " ) . attr ( " disabled " , " " );
}
else {
$ ( " #charitynumber " ) . attr ( " disabled " , " disabled " );
}
}
2009-10-02 20:47:04 +00:00
2009-10-02 19:21:43 +00:00
</ script >
< div id = " setup " style = " width: 780px; " >
< div id = " editor_tabs " >
< ul >
2025-01-29 03:30:48 +00:00
< li >< a href = " #editor_tab_setup " >< span >< ? = i18n ( 'Module Setup' ) ?> </span></a></li>
< li >< a href = " #editor_tab_levels " >< span >< ? = i18n ( 'Fundraising Levels' ) ?> </span></a></li>
< li >< a href = " #editor_tab_goals " >< span >< ? = i18n ( 'Fundraising Purposes' ) ?> </span></a></li>
2009-10-02 19:21:43 +00:00
</ ul >
2009-10-08 19:13:14 +00:00
< div id = " editor_tab_setup " >
</ div >
2009-10-02 19:21:43 +00:00
< div id = " editor_tab_levels " >
</ div >
< div id = " editor_tab_goals " >
</ div >
</ div >
</ div >
< ?
send_footer ();
?>