drop_helper

(Since 1.7.9) -- drop an existing helper
function drop_helper($params)

Parameters

$params is an ASSOCIATIVE ARRAY that supports the following attributes:
ParameterTypeDetails
id INT (optional) the helper ID
name STRING (optional) the helper name

Returns

Nothing, or a string beginning with "Error".

Examples

<?php
$Api = new PodAPI();
$params = array('id' => 28);
$Api->drop_helper($params);
?>
See Also