This topic is locked
[SOLVED]

 Bootstrap Welcome Page

6/7/2018 1:51:05 PM
PHPRunner General questions
Z
zecalouro author

Dear sirs,
I need to display on comment fields of Bootstrap Welcome Page tiles dynamic information using PHP, such like $data['field'].
Is that possible? The image illustrates better what I need to achieve.


Thanks in advance

admin 6/7/2018

Yes, this can be done. Implement Menu Item: Modify event and use code similar to this:

if ($menuItem->getTable() == 'categories') {

$menuItem->comments='test';

}

return true;


More info:

https://xlinesoft.com/phprunner/docs/menu_item_modify.htm

Z
zecalouro author 6/7/2018

Dear Sergey,
Works magically, thanks a lot!



Yes, this can be done. Implement Menu Item: Modify event and use code similar to this:

if ($menuItem->getTable() == 'categories') {

$menuItem->comments='test';

}

return true;


More info:

https://xlinesoft.com/phprunner/docs/menu_item_modify.htm