View Single Post
  #4  
Old 06-15-2017, 08:41 AM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 333,698
Hall of Famer is on a distinguished road
Default

To achieve this, you can add this line to your constructor method for the controller:

Code:
 public function __construct(){       
    parent::__construct("member");         
    // The rest of constructor code if any      
}
This will mark the controller and its subsequent actions accessible only to logged in users, it is used in the account controller(http://yourdomain.com/account). If you want certain actions to be accessible by members only, you can add these lines to the action methods instead:

Code:
    $this->access = "member";        
    $this->handleAccess();
If you dont understand terms such as controller and actions, please let me know and I will explain further.
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote