API16

JStream/removeFilter: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Remove a filter, either by resource (handed out from the append or prepend function alternatively via getting the filter list) bool Result of operation <span class="...
 
Doxiki (talk | contribs)
No edit summary
Line 18: Line 18:
!Description
!Description
|-
|-
|  
| &$resource
|  
|  
|   
|   

Revision as of 10:12, 30 March 2010

Description

Remove a filter, either by resource (handed out from the append or prepend function alternatively via getting the filter list) bool Result of operation


[Edit Descripton]

Template:Description:JStream/removeFilter

Syntax

removeFilter(&$resource, $byindex=false)
Parameter Name Default Value Description
&$resource
$byindex false

Returns

bool Result of operation

Defined in

libraries/joomla/filesystem/stream.php

Importing

jimport( 'joomla.filesystem.stream' );

Source Body

function removeFilter(&$resource, $byindex=false)
{
        $res = false;
        // Capture PHP errors
        $php_errormsg = '';
        $track_errors = ini_get('track_errors');
        ini_set('track_errors', true);
        if($byindex) {
                $res = stream_filter_remove($this->filters[$resource]);
        } else {
                $res = stream_filter_remove($resource);
        }
        if($res && $php_errormsg) {
                $this->setError($php_errormsg);
        }
        // restore error tracking to what it was before
        ini_set('track_errors',$track_errors);
        return $res;
}

[Edit See Also] Template:SeeAlso:JStream/removeFilter

Examples

<CodeExamplesForm />