31 lines
No EOL
800 B
PHP
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;
|
|
}
|
|
}
|
|
|
|
}
|
|
?>
|