Hi, I am writing a plugin so that the logout button text changes to "Logout <username>". Currently the way I am doing it is by creating a html span element with content $_SESSION["username"] (using html::span) in .php and then later making this html span element child of logout button in the .js file. However, I would like to know whether it is possible to change the logout button text in the .php file itself?
Regards, Rahul.