API15

JVersion/getLongVersion: Difference between revisions

From Joomla! Documentation

m removing red link to edit, no existant pages
m preparing for archive only
 
Line 38: Line 38:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=getLongVersion
  category=getLongVersion
  category=JVersion
  category=JVersion
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 01:15, 25 March 2017

Description

string Long format version


[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax

getLongVersion()


Returns

string Long format version

Defined in

libraries/joomla/version.php

Importing

jimport( 'joomla.version' );

Source Body

function getLongVersion()
{
        return $this->PRODUCT .' '. $this->RELEASE .'.'. $this->DEV_LEVEL .' '
                . $this->DEV_STATUS
                .' [ '.$this->CODENAME .' ] '. $this->RELDATE .' '
                . $this->RELTIME .' '. $this->RELTZ;
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

Code Examples