This topic is locked

Display Build Number in Footer

3/13/2025 4:01:29 PM
PHPRunner Tips and Tricks
S
safesurf author

It took me some time but finally found out how to display the PHPRunner build number in the footer. Hope this helps someone trying to do the same thing.

<?php echo "Version 11.0 Build " . $wizardBuildKey = ProjectSettings::getProjectValue('wizardBuild'); ?>

C
Chris Whitehead 3/14/2025

That's really handy, thanks.

ffrinai 8/6/2025

very interesting,
where can i find documentation on ProjectSettings and and its methods?

thanks
Fabio

G
Grdimitris 8/6/2025

Class ProjectSettings is in runnerapps\project...\classes\projectsettings.php and the information you can alter is the array in runnerapps\project...\settings\project.php where project... is the folder that your project is builded.