00001 <?php 00006 include_once("core/system/JBaseObject.class.php"); 00007 00014 class JAuth extends JBaseObject 00015 { 00020 function &GetAuthSystem() 00021 { 00022 // By now, it just returns the DefaultAuth system 00023 include_once("core/auth/backends/DefaultAuth.class.php"); 00024 return new DefaultAuth(); 00025 } 00026 } 00027 ?>