Function add on a non-object issue

Forum
Last Post
Threads / Messages

Abronsyth

A Headache Embodied
Member
Joined
Aug 25, 2011
Messages
1,012
Points
36
Location
NY
Mysidian Dollar
73,285
Hey all, hoping someone more PHP savvy than myself can help out here.

I'm working on adding a new module to my theme and am basing it off of the other modules. Well, I am encountering an issue now in my class file.
Fatal error: Call to a member function add() on a non-object in /home/teratria/public_html/classes/class_userbar.php on line 56

This is the script that it is struggling with;
PHP:
    protected function setUsercp(){
	$mysidia = Registry::get("mysidia");
        $profile = $mysidia->user->getprofile(); 
	date_default_timezone_set("America/New_York");
	$time = date('h:i a');
		//$this->UserCP->add(new Comment("<img src='http://teratria.x10host.com/images/theme/clock.png'/> {$time}"));
		$profileLink = new Link("http://teratria.x10host.com/profile/view/{$mysidia->user->username}");
		$profileLink->setText("<img src='http://teratria.x10host.com/images/theme/user.png'/> {$mysidia->user->username}");
		$this->usercp->add($profileLink);
		
        $this->setDivision($this->usercp);    
    }

Is anyone able to see what I am doing wrong?
 
Sort of, yes, I am making a user control panel that is a separate widget from the sidebar.

If I could just get the function working properly then everything else would be fine, so I already have everything coded, just need to find out what's causing my function to bug out.
 
Well seems to me that this is where you get the error:

PHP:
$this->usercp->add($profileLink);

If so, you have uninitialized property $usercp for your class, or this property does not exist(a typo, or it never exists in the first place). You need to provide more information here, maybe posting the entire class file will do.
 

Similar threads

Users who are viewing this thread

  • Forum Contains New Posts
  • Forum Contains No New Posts

Forum statistics

Threads
4,274
Messages
33,114
Members
1,602
Latest member
BerrieMilk
BETA

Latest Threads

Latest Posts

Top