API17

Difference between revisions of "JPath::setPermissions"

From Joomla! Documentation

m (JoomlaWikiBot moved page JPath::setPermissions/11.1 to API17:JPath::setPermissions without leaving a redirect: Robot: Moved page)
m (→‎User contributed notes: moving preparation)
Line 63: Line 63:
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
<noinclude>[[Category:JPath]][[Category:JPath::setPermissions]]</noinclude>
+
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Revision as of 16:59, 11 May 2013

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 JPath::setPermissions[edit]

Description[edit]

Chmods files and directories recursivly to given permissions.

Template:Description:JPath::setPermissions [Edit Descripton]

public static function setPermissions (
        $path
        $filemode= '0644'
        $foldermode= '0755'
)
Parameter Type Default Description
$path string Root path to begin changing mode [without trailing slash]
$filemode string '0644' Octal representation of the value to change file mode to [null = no change]
$foldermode string '0755' Octal representation of the value to change folder mode to [null = no change]
  • Returns boolean True if successful [one fail means the whole operation failed]
  • Defined on line 67 of libraries/joomla/filesystem/path.php
  • Since Joomla 11.1
  • Referenced by

See also[edit]

Template:SeeAlso:JPath::setPermissions [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />