Welcome to the forum!
You’re on the right track.
- Copy one of the existing files to create a new file with a unique filename in
/var/www/html/admin/modules/superfecta/sources
- Ensure it’s owned by asterisk:asterisk (or just run
fwconsole chown
) - Edit the class line at the top such that the class name matches the unique portion of the filename. I assume it’s case sensitive
# cd /var/www/html/admin/modules/superfecta/sources/
# cp source-Abandon_lookup.module source-new_stuff.module
# chown asterisk:asterisk source-new_stuff.module
after editing file:
<?php
/**
* CID Superfecata lookup to stop a search from progressing.
*/
class new_stuff extends superfecta_base {
public $description, $source_param;
public $version_requirement = "2.11";
*snip~