mirror of
https://github.com/php/web-php.git
synced 2026-03-23 23:02:13 +01:00
The $Id$ keywords were used in Subversion where they can be substituted with filename, last revision number change, last changed date, and last user who changed it. In Git this functionality is different and can be done with Git attribute ident. These need to be defined manually for each file in the .gitattributes file and are afterwards replaced with 40-character hexadecimal blob object name which is based only on the particular file contents. This patch simplifies handling of $Id$ keywords by removing them since they are not used anymore.
43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
<?php
|
|
$_SERVER['BASE_PAGE'] = 'elephpant.php';
|
|
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
|
|
$SIDEBAR_DATA = '
|
|
<a name="license"></a>
|
|
<h3>PHP License</h3>
|
|
<p>
|
|
For information on the PHP License (i.e. using the PHP language),
|
|
<a href="/license/">see our licensing information page</a>.
|
|
</p>
|
|
';
|
|
site_header("ElePHPant", array("current" => "footer"));
|
|
?>
|
|
|
|
<a name="copyright"></a>
|
|
<h1>ElePHPant</h1>
|
|
|
|
<p>
|
|
The ElePHPant is the adorable, elephantine mascot of the PHP project.
|
|
Occasionally, official stuffed toy elePHPants designed by
|
|
<a href="http://www.elroubio.net">Vincent Pontier</a> are made available.
|
|
You may have seen pictures of them (from
|
|
<a href="https://www.flickr.com/groups/elephpants/">Flickr</a>) at the bottom
|
|
of the php.net homepage. Beware of imitators.
|
|
</p>
|
|
|
|
<p>
|
|
<img src="images/logos/elephpant-running-78x48.gif" alt="">
|
|
</p>
|
|
|
|
<p>
|
|
For more information on the PHP Group and the PHP project, please see
|
|
<a href="http://php.net/">the PHP homepage</a>.
|
|
</p>
|
|
|
|
<?php
|
|
// Print the common footer.
|
|
site_footer(
|
|
array(
|
|
'elephpants' => true
|
|
)
|
|
);
|