Is there anyway I can place the following in the footer settings?:
<div align="center">Copyright © 1975-<?php echo date('Y'); ?> Peter Apockotos. All Rights Reserved.</div> <div align="center">All trademarks and copyrights on this page are owned by their respective owners.</div>
I would just insert that manually into a template. If you are using a phptemplates template, add that code into page.tpl.php replacing the footer section.
Maybe there's a better way.
On 7/28/05, Peter Apockotos drupal@apockotos.com wrote:
Is there anyway I can place the following in the footer settings?:
<div align="center">Copyright © 1975-<?php echo date('Y'); ?> Peter Apockotos. All Rights Reserved.</div> <div align="center">All trademarks and copyrights on this page are owned by their respective owners.</div> -- [ Drupal support list | http://lists.drupal.org/ ]
On Jul 28, 2005, at 12:26 PM, Jim Dam wrote:
I would just insert that manually into a template. If you are using a phptemplates template, add that code into page.tpl.php replacing the footer section.
Maybe there's a better way.
On 7/28/05, Peter Apockotos drupal@apockotos.com wrote: Is there anyway I can place the following in the footer settings?:
<div align="center">Copyright © 1975-<?php echo date('Y'); ?> Peter Apockotos. All Rights Reserved.</div> <div align="center">All trademarks and copyrights on this page are owned by their respective owners.</div> -- [ Drupal support list | http://lists.drupal.org/ ]
-- Jim Dam jimdam@gmail.com
Thanks for the heads up Jim. I still have to create my template first. I came over from Mambo because I was tired of my site being hacked.
Op donderdag 28 juli 2005 18:16, schreef Peter Apockotos:
Is there anyway I can place the following in the footer settings?:
<div align="center">Copyright © 1975-<?php echo date('Y'); ?> Peter Apockotos. All Rights Reserved.</div> <div align="center">All trademarks and copyrights on this page are owned by their respective owners.</div>
no, the drupal footer does not parse PHP.
but surely you can add that to your theme. if you use PHPTemplate (default) you should edit the page.tpl.php. more info on drupal.org/phptemplate
Regards, Bèr
On Jul 28, 2005, at 12:38 PM, Bèr Kessels wrote:
Op donderdag 28 juli 2005 18:16, schreef Peter Apockotos:
Is there anyway I can place the following in the footer settings?:
<div align="center">Copyright © 1975-<?php echo date('Y'); ?> Peter Apockotos. All Rights Reserved.</div> <div align="center">All trademarks and copyrights on this page are owned by their respective owners.</div>
no, the drupal footer does not parse PHP.
but surely you can add that to your theme. if you use PHPTemplate (default) you should edit the page.tpl.php. more info on drupal.org/phptemplate
Regards, Bèr -- [ Bèr Kessels | Drupal services www.webschuur.com ]
Thank you for the clarification Bèr!