CampVersion::getRelease PHP Method

getRelease() public method

public getRelease ( )
    public function getRelease()
    {
        return $this->m_release;
    }

Usage Example

Beispiel #1
0
/**
 * Display the copyright notice and close the HTML page.
 */
function camp_html_copyright_notice($p_displayBorder = true)
{
    global $Campsite;
    $campVersion = new CampVersion();
    if ($p_displayBorder) {
        ?>
    <div class="footer">
    <?php 
    } else {
        ?>
    <div class="footer_plain">
    <?php 
    }
    ?>
    <a href="http://newscoop.sourcefabric.org/" target="_blank">
    <?php 
    echo $campVersion->getPackage();
    ?>
</a>, the open content management system for professional journalists. Version: <?php 
    echo $campVersion->getRelease();
    ?>
      <br />
      <?php 
    echo $campVersion->getCopyright() . '&nbsp;';
    echo $campVersion->getPackage();
    ?>
       is distributed under
    <?php 
    echo $campVersion->getLicense();
    ?>
    </div>
	<?php 
}
All Usage Examples Of CampVersion::getRelease