clipbucket/upload/includes/classes/signup.class.php

31 lines
800 B
PHP
Raw Normal View History

2009-08-25 12:16:42 +00:00
<?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 {
2009-08-27 15:01:32 +00:00
2009-08-25 12:16:42 +00:00
//This Function Is Used To Check Regiseration is allowed or not
function Registration(){
if(ALLOW_REGISTERATION == 1 ){
return true;
}else{
return false;
}
}
}
?>