clipbucket/upload/includes/classes/signup.class.php
Arslan Hassan f4b4ee5cfb ADDED : WHOLE NEW QUICKLIST
UPDATE : INDEX page
Update : user record update
Added : user category system
2009-12-04 21:03:27 +00:00

31 lines
No EOL
800 B
PHP

<?php
/**
Name : Signup Class
****************************************************
Don Not Edit These Classes , It May cause your script
not to run properly
This source file is subject to the ClipBucket End-User
License Agreement, available online at:
http://clip-bucket.com/cbla
By using this software, you acknowledge having read this
Agreement and agree to be bound thereby.
****************************************************
Copyright (c) 2007-2008 Clip-Bucket.com. All rights reserved.
*****************************************************
*/
class signup {
//This Function Is Used To Check Regiseration is allowed or not
function Registration(){
if(ALLOW_REGISTERATION == 1 ){
return true;
}else{
return false;
}
}
}
?>