Jake Vanderwerf
2026-02-10 649c6af379f1247cbbf924a6ed39244e9aba46fb
forms/_setup.php
@@ -15,17 +15,11 @@
 *
 ************************************************************/
require(AJV_DIR . '/forms/get-an-estimate.php');
require(AJV_DIR . '/forms/nlp.php');
require(AJV_DIR . '/forms/contact.php');
require(AJV_DIR . '/forms/partner.php');
require(ATAT_DIR . '/forms/contact.php');
add_filter('jvb_register_forms', 'altr_register_forms');
add_filter('jvb_register_forms', 'atat_register_forms');
function altr_register_forms($forms) {
    $forms['get_an_estimate']   = altr_get_an_estimate();
    $forms['nlp']               = altr_nlp();
    $forms['contact']           = altr_contact();
    $forms['partner']           = altr_nlp_partner();
function atat_register_forms($forms) {
    $forms['contact']           = atat_contact();
    return $forms;
}