Changeset 12649 for freepbx/branches/2.10/amp_conf/htdocs/admin
- Timestamp:
- 09/22/11 14:17:41 (2 years ago)
- Files:
-
- freepbx/branches/2.10/amp_conf/htdocs/admin/assets/css/mainstyle-rtl.css (modified) (1 diff)
- freepbx/branches/2.10/amp_conf/htdocs/admin/assets/css/mainstyle.css (modified) (2 diffs)
- freepbx/branches/2.10/amp_conf/htdocs/admin/images/schmooze-logo.png (added)
- freepbx/branches/2.10/amp_conf/htdocs/admin/views/footer.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/branches/2.10/amp_conf/htdocs/admin/assets/css/mainstyle-rtl.css
r12647 r12649 25 25 float: right; 26 26 } 27 #footer_content_sponsor > a > img{ 28 margin-left:10px; 29 } freepbx/branches/2.10/amp_conf/htdocs/admin/assets/css/mainstyle.css
r12646 r12649 50 50 margin-left: auto; 51 51 margin-right: auto; 52 width: 550px;52 /*width: 550px;*/ 53 53 text-align:left; 54 54 } … … 77 77 float: left; 78 78 } 79 79 #footer_content_sponsor { 80 margin-left:25px; 81 } 80 82 /***** info popups *****/ 81 83 a.info:link, a.info:hover { freepbx/branches/2.10/amp_conf/htdocs/admin/views/footer.php
r12648 r12649 7 7 $html .= '<div id="footer"><hr />'; 8 8 $html .= '<div id="footer_content">'; 9 $version = get_framework_version(); 10 $version_tag = '?load_version=' . urlencode($version); 9 $html .= '<div id="footer_content_fpbx">'; 10 $version = get_framework_version(); 11 $version_tag = '?load_version=' . urlencode($version); 11 12 if ($amp_conf['FORCE_JS_CSS_IMG_DOWNLOAD']) { 12 13 $this_time_append = '.' . time(); … … 16 17 } 17 18 19 18 20 // Brandable logos in footer 19 $freepbx_alt_f = $amp_conf['BRAND_FREEPBX_ALT_FOOT'] 20 ? $amp_conf['BRAND_FREEPBX_ALT_FOOT'] 21 : _("FreePBX®"); 22 $freepbx_logo_f = ($amp_conf['BRAND_IMAGE_FREEPBX_FOOT'] 23 ? $amp_conf['BRAND_IMAGE_FREEPBX_FOOT'] 24 : 'images/freepbx_small.png').$version_tag; 25 $freepbx_link_f = $amp_conf['BRAND_IMAGE_FREEPBX_LINK_FOOT'] 26 ? $amp_conf['BRAND_IMAGE_FREEPBX_LINK_FOOT'] 27 : 'http://www.freepbx.org'; 21 //fpbx logo 22 $html .= '<a target="_blank" href="' . $amp_conf['BRAND_IMAGE_FREEPBX_LINK_FOOT']. '">' 23 . '<img id="footer_logo" src="'.$amp_conf['BRAND_IMAGE_FREEPBX_FOOT'].$version_tag 24 . '" alt="'.$amp_conf['BRAND_FREEPBX_ALT_FOOT'] .'"/></a>'; 28 25 29 $html .= '<a target="_blank" href="' . $freepbx_link_f . '">'; 30 $html .= '<img id="footer_logo" src="'.$freepbx_logo_f.'" alt="'.$freepbx_alt_f.'"/></a>'; 26 //fpbx data 31 27 $html .= '<span class="footer-float-left">'; 32 $html .= "\t\t".sprintf(_('%s is a registered trademark of %s'), 33 '<a href="http://www.freepbx.org" target="_blank">' . _('FreePBX') . '</a>', 34 '<a href="http://www.freepbx.org/copyright.html" target="_blank">Bandwidth.com</a>') . "<br/>\n"; 35 $html .= "\t\t".sprintf(_('%s is licensed under %s'), 36 _('FreePBX') . ' ' . $version, 37 '<a href="http://www.gnu.org/copyleft/gpl.html" target="_blank">GPL</a>'); 28 $html .= '<a href="http://www.freepbx.org" target="_blank">FreePBX</a> ' 29 . _('is a registered trademark of') 30 . '<a href="http://www.freepbx.org/copyright.html" target="_blank"> Bandwidth.com</a>' 31 . br(); 32 $html .= _('FreePBX') . ' ' . $version . ' ' . _('is licensed under') 33 . '<a href="http://www.gnu.org/copyleft/gpl.html" target="_blank"> GPL</a>'; 34 35 //module license 38 36 if (!empty($active_modules[$module_name]['license'])) { 39 37 $html .= br() . sprintf(_('Current module licensed under %s'), 40 38 trim($active_modules[$module_name]['license'])); 41 39 } 42 //echo benchmarking 40 41 //benchmarking 43 42 if (isset($amp_conf['DEVEL']) && $amp_conf['DEVEL']) { 44 43 $benchmark_time = number_format(microtime_float() - $benchmark_starttime, 4); … … 46 45 } 47 46 $html .= '</span>'; 47 $html .= '</div>'; //footer_content_fpbx 48 49 //sponsors 50 $html .= '<div id="footer_content_sponsor" class="footer-float-left">'; 51 52 $html .= '<a target="_blank" href="http://www.schmoozecom.com">' 53 . '<img id="footer_logo" src="images/schmooze-logo.png" ' 54 . ' style="margin-right:10px"' 55 . 'alt="www.schmoozecom.com"/></a>'; 56 $html .= '<span class="footer-float-left">'; 57 $html .= _('The FreePBX project is sponsored in part by:') . br(); 58 $html .= '<a href="http://www.schmoozecom.com" target="_blank">Schmooze Com., Inc.</a>' . br(); 59 $html .= 'Proud Sponsor, contributor, ' . br() 60 . _('and provider of') 61 . ' <a href="http://www.freepbx.org/support-and-professional-services">' 62 . _('Professional Support & Services') . '</a>'; 63 //$html .= _('All Rights Reserved'); 64 $html .= '</div>'; //footer_content_sponsor 48 65 $html .= '</div>'; //footer_content 49 66 $html .= '</div>'; //footer
