Jump to content
  • 0

Question

Posted

Hi,

 

I am trying to display some data when i click a service. At the moment i got

'This service has no details.' message.   

 

We need to modify

 

public function getAdminServiceInfo($service, $package) {

           return null;
}

 

to display any data i want, right?

 

 

I just tried

 

public function getAdminServiceInfo($service, $package) {

           return "hi";
}

 

But hi is not displayed.  I should re install the module?

 

if so is there anyway to take backup of module and then reinstall it?

 

 

 

3 answers to this question

Recommended Posts

  • 0
Posted

With this in the module:

public function getAdminServiceInfo($service, $package) {
           return "hi";
}

Yes, I see "hi" when I click on a service table row on the client's page in the admin UI. That is where you are looking for it, correct?

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...