API17

Difference between revisions of "JStream:: construct"

From Joomla! Documentation

(Bulk upload by Doxiki2)
 
m (preparing for archive only)
 
(6 intermediate revisions by 2 users not shown)
Line 4: Line 4:
 
Constructor.  
 
Constructor.  
  
{{Description:JStream::__construct}}
+
 
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[Description:JStream::__construct|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
===Since===
 
{{JVer|11.1 }}
 
===Synopsis===
 
 
<source lang="php">
 
<source lang="php">
public JStream->__construct ($writeprefix= '', $readprefix= '', $context=array())
+
public function __construct (
 +
        $writeprefix= ''
 +
        $readprefix= ''
 +
        $context=array
 +
)
 
</source>
 
</source>
 
{| class="wikitable"
 
{| class="wikitable"
Line 37: Line 36:
 
|-
 
|-
 
|}
 
|}
===Returns===
+
* '''Returns'''
 +
* '''Defined''' on line 111 of libraries/joomla/filesystem/stream.php
 +
* '''Since''' {{JVer|11.1 }}
 +
===See also===
 +
* {{JVer|11.1}} '''JStream::__construct source code''' on [[jplatform:filesystem/stream.php#cl-103|BitBucket]]
 +
* {{JVer|11.1}} Class [[API17:JStream|JStream]]
 +
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Filesystem|Filesystem]]
 +
* [[API17:JStream::__construct|Other versions of JStream::__construct]]
  
===Defined in===
+
 
libraries/joomla/filesystem/stream.php
+
===User contributed notes===
===Referenced by===
+
=== Code Examples ===
===See also===
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JStream::__construct|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
* [[JStream/11.1|JStream]]
 
* [[JStream::__construct|Other versions of this method]]
 
{{SeeAlso:JStream::__construct}}
 
===Examples===
 
<CodeExamplesForm />
 
 
<dpl>
 
<dpl>
 
noresultsheader=\n
 
noresultsheader=\n
 
category=JStream::__construct
 
category=JStream::__construct
category=CodeExample
+
namespace=CodeExample
 
category=MethodExample
 
category=MethodExample
 
include=*
 
include=*
 +
namespace=CodeExample
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:JStream]][[Category:JStream::__construct]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 22:43, 24 March 2017

The "API17" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Joomla 11.1 JStream::__construct[edit]

Description[edit]

Constructor.


public function __construct (
        $writeprefix= ''
        $readprefix= ''
        $context=array
)
Parameter Type Default Description
$writeprefix string Prefix of the stream; Note: unlike the JPATH_*, this has a final path seperator!
$readprefix string
$context string array() $context
  • Returns
  • Defined on line 111 of libraries/joomla/filesystem/stream.php
  • Since Joomla 11.1

See also[edit]


User contributed notes[edit]

Code Examples[edit]