1<table class="donate"> 2<tr> 3 <td> 4 <a href="http://phpipam.net">phpIPAM IP address management <?php print '[v'. VERSION_VISIBLE. ']'; ?></a> 5 <?php 6 // Display SCHEMA database version in development builds 7 if(PUBLISHED===false) { 8 print " dbversion ".DBVERSION; 9 } 10 // show github tree ref (Docker builds) 11 if (defined("GIT_VCS_REF")) { 12 print " git <a href='https://github.com/phpipam/phpipam/tree/".GIT_VCS_REF."'>".GIT_VCS_REF."</a>"; 13 } 14 ?> 15 </td> 16 17 <?php 18 # exclude install 19 if($_GET['page']!="install") { ?> 20 <td> 21 <?php print _('In case of problems please contact').' <a href="mailto:'. $User->settings->siteAdminMail .'">'. $User->settings->siteAdminName .'</a>'; ?> 22 </td> 23 <?php 24 /* hide donations button */ 25 if($User->settings->donate == 0) { 26 27print ' <td id="donate" class="hidden-xs hidden-sm" rel="tooltip" data-html="true" title="'._('phpIPAM is free, open-source project').'.<br>'._('If you like the software you can donate by clicking this button to support further development').'."> 28 <a href="https://phpipam.net/donate/" target="_blank"><input type="image" src="css/images/btn_donate_SM.gif" name="submit"></a> 29 </td>'; 30 31 } 32 } 33 ?> 34</tr> 35</table> 36