Thread: [Php-calendar-discussion] Menu lists
Brought to you by:
sproctor
From: Ken R. <ke...@in...> - 2005-07-06 10:17:57
|
Can someone please direct me where I can delete the code at the bottom = of the calendar where it reads... Valid XHTML 1.1] [Valid CSS2] Still learning the PHP, and really appreciate the help Ken |
From: Sean P. <spr...@gm...> - 2005-07-06 13:18:43
|
Hi, It's in calendar.php just search for those lines and remove them. Sean On 7/6/05, Ken Robb <ke...@in...> wrote: >=20 > Can someone please direct me where I can delete the code at the bottom of= =20 > the calendar where it reads... > Valid XHTML 1.1<http://validator.w3.org/check?url=3Dhttp%3A%2F%2Fwww.ther= emnantchurch.com%2Fcalendar%2Findex.php%3F>]=20 > [Valid CSS2 <http://jigsaw.w3.org/css-validator/check/referer>] > Still learning the PHP, and really appreciate the help > Ken > |
From: Ken R. <ke...@in...> - 2005-07-07 02:10:36
|
Thanks Sean I found them in calendar.php Can I remove everything listed here, or just selected portions? // returns XHTML data for the links at the bottom of the calendar function link_bar() { global $config, $phpc_url; $html =3D tag('div', attributes('class=3D"phpc-footer"')); if($config['translate']) { $html->add(tag('p', '[', lang_link('en'), '] [', lang_link('de'), ']')); } $html->add(tag('p', '[', tag('a', attributes('href=3D"http://validator.w3.org/' .'check?url=3D' .rawurlencode($phpc_url) .'"'), 'Valid XHTML 1.1'), '] [', tag('a', attributes('href=3D"http://jigsaw.w3.org/' .'css-validator/check/referer"'), 'Valid CSS2'), ']')); return $html; } ----- Original Message -----=20 From: Sean Proctor=20 To: Ken Robb=20 Cc: php...@li...=20 Sent: Wednesday, July 06, 2005 9:18 AM Subject: Re: [Php-calendar-discussion] Menu lists Hi, It's in calendar.php just search for those lines and remove them. Sean On 7/6/05, Ken Robb <ke...@in...> wrote: Can someone please direct me where I can delete the code at the = bottom of the calendar where it reads... Valid XHTML 1.1] [Valid CSS2] Still learning the PHP, and really appreciate the help Ken |
From: Gabriel H. <ga...@ga...> - 2005-07-07 07:34:18
|
Hi Ken, You will also need to delete or comment out any calls to the function. I deleted the calls long ago so can't tell you what file it is in though. Gabriel Ken Robb wrote: > Thanks Sean > I found them in calendar.php > Can I remove everything listed here, or just selected portions? > > *// returns XHTML data for the links at the bottom of the calendar > function link_bar() > { > global $config, $phpc_url;* > ** > * $html = tag('div', attributes('class="phpc-footer"'));* > ** > * if($config['translate']) { > $html->add(tag('p', '[', lang_link('en'), '] [', > lang_link('de'), ']')); > }* > ** > * $html->add(tag('p', '[', > tag('a', > attributes('href="**http://validator.w3.org/'* > <http://validator.w3.org/%27> > * .'check?url=' > .rawurlencode($phpc_url) > .'"'), 'Valid XHTML 1.1'), > '] [', > tag('a', attributes('href="**http://jigsaw.w3.org/'* > <http://jigsaw.w3.org/%27> > * .'css-validator/check/referer"'), > 'Valid CSS2'), > ']')); > return $html; > } > * > > ----- Original Message ----- > *From:* Sean Proctor <mailto:spr...@gm...> > *To:* Ken Robb <mailto:ke...@in...> > *Cc:* php...@li... > <mailto:php...@li...> > *Sent:* Wednesday, July 06, 2005 9:18 AM > *Subject:* Re: [Php-calendar-discussion] Menu lists > > Hi, > > It's in calendar.php just search for those lines and remove them. > > Sean > > On 7/6/05, *Ken Robb* <ke...@in... > <mailto:ke...@in...>> wrote: > > Can someone please direct me where I can delete the code at > the bottom of the calendar where it reads... > Valid XHTML 1.1 > <http://validator.w3.org/check?url=http%3A%2F%2Fwww.theremnantchurch.com%2Fcalendar%2Findex.php%3F>] > [Valid CSS2 <http://jigsaw.w3.org/css-validator/check/referer>] > > Still learning the PHP, and really appreciate the help > Ken > > -- Gabriel Harrison Web Development and IT Support 1 Hawthorn Crescent Durham DH1 1ED Tel: 0191 370 9181 Mob: 07939 231 720 |
From: Sean P. <spr...@gm...> - 2005-07-07 13:00:19
|
Hi, Or you can just delete or comment out the body of the function, but leave i= t=20 as: function link_bar() { } I hope that helps, Sean On 7/7/05, Gabriel Harrison <ga...@ga...> wrote: >=20 > Hi Ken, >=20 > You will also need to delete or comment out any calls to the function. I > deleted the calls long ago so can't tell you what file it is in though. >=20 > Gabriel >=20 > Ken Robb wrote: >=20 > > Thanks Sean > > I found them in calendar.php > > Can I remove everything listed here, or just selected portions? > > > > *// returns XHTML data for the links at the bottom of the calendar > > function link_bar() > > { > > global $config, $phpc_url;* > > ** > > * $html =3D tag('div', attributes('class=3D"phpc-footer"'));* > > ** > > * if($config['translate']) { > > $html->add(tag('p', '[', lang_link('en'), '] [', > > lang_link('de'), ']')); > > }* > > ** > > * $html->add(tag('p', '[', > > tag('a', > > attributes('href=3D"**http://validator.w3.org/'* > > <http://validator.w3.org/%27> > > * .'check?url=3D' > > .rawurlencode($phpc_url) > > .'"'), 'Valid XHTML 1.1'), > > '] [', > > tag('a', attributes('href=3D"**http://jigsaw.w3.org/'* > > <http://jigsaw.w3.org/%27> > > * .'css-validator/check/referer"'), > > 'Valid CSS2'), > > ']')); > > return $html; > > } > > * > > > > ----- Original Message ----- > > *From:* Sean Proctor <mailto:spr...@gm...> > > *To:* Ken Robb <mailto:ke...@in...> > > *Cc:* php...@li... > > <mailto:php...@li...> > > *Sent:* Wednesday, July 06, 2005 9:18 AM > > *Subject:* Re: [Php-calendar-discussion] Menu lists > > > > Hi, > > > > It's in calendar.php just search for those lines and remove them. > > > > Sean > > > > On 7/6/05, *Ken Robb* <ke...@in... > > <mailto:ke...@in...>> wrote: > > > > Can someone please direct me where I can delete the code at > > the bottom of the calendar where it reads... > > Valid XHTML 1.1 > > < > http://validator.w3.org/check?url=3Dhttp%3A%2F%2Fwww.theremnantchurch.com= %2Fcalendar%2Findex.php%3F > >] > > [Valid CSS2 <http://jigsaw.w3.org/css-validator/check/referer>] > > > > Still learning the PHP, and really appreciate the help > > Ken > > > > >=20 > -- > Gabriel Harrison > Web Development and IT Support > 1 Hawthorn Crescent > Durham DH1 1ED > Tel: 0191 370 9181 > Mob: 07939 231 720 >=20 >=20 >=20 > ------------------------------------------------------- > SF.Net <http://SF.Net> email is sponsored by: Discover Easy Linux=20 > Migration Strategies > from IBM. Find simple to follow Roadmaps, straightforward articles, > informative Webcasts and more! Get everything you need to get up to > speed, fast. http://ads.osdn.com/?ad_id=3D7477&alloc_id=3D16492&op=3Dclic= k > _______________________________________________ > Php-calendar-discussion mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/php-calendar-discussion > |