API15

JVersion/getShortVersion: Difference between revisions

From Joomla! Documentation

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


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=getShortVersion
  category=getShortVersion
  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 Short version format


[<! removed edit link to red link >]

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

Syntax

getShortVersion()


Returns

string Short version format

Defined in

libraries/joomla/version.php

Importing

jimport( 'joomla.version' );

Source Body

function getShortVersion() {
        return $this->RELEASE .'.'. $this->DEV_LEVEL;
}

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

Examples

Code Examples