blacklist_write_htaccess_data
Hook Added in Version:
1.4.0
Hook File Location:
mcp.blacklist.php
Hook Description:
Modify what is written to the .htaccess file in Blacklist CP
Hook Parameters
- $data - The current text to be written to the htaccess file
- $old - An array of the current blacklist items
Hook Returns Data?
Yes
Appearance of Hook in the Code
if (isset($EXT->extensions['blacklist_write_htaccess_data']))
{
$data = $EXT->call_extension('blacklist_write_htaccess_data', $data, $old);
if ($EXT->end_script === TRUE) return $edata;
}
