Skip to content
wiki.fftac.org

Foundation Content - Source Excerpt 56

Back to Foundation Content

Summary

This source excerpt preserves a bounded section of Anti-Christ.org/wp-content/plugins/fftac-foundation-core/inc/foundation-content.php so readers can inspect the evidence without opening the full source file.

**Source path:** Anti-Christ.org/wp-content/plugins/fftac-foundation-core/inc/foundation-content.php

'content'    => antichrist_engine_foundation_research_content(),
            'nav_label'  => 'Research',
            'menu_order' => 35,
        ),
        'recovery' => array(
            'title'      => 'Recovery Guide',
            'slug'       => 'recovery',
            'template'   => 'template-recovery.php',
            'content'    => antichrist_engine_foundation_recovery_content(),
            'nav_label'  => 'Recovery',
            'menu_order' => 38,
        ),
        'standards' => array(
            'title'      => 'Editorial Standards',
            'slug'       => 'standards',
            'template'   => 'template-standards.php',
            'content'    => antichrist_engine_foundation_standards_content(),
            'nav_label'  => 'Standards',
            'menu_order' => 45,
        ),
        'ai_engine' => array(
            'title'      => 'AI Engine',
            'slug'       => 'ai-engine',
            'template'   => 'template-ai-engine.php',
            'content'    => function_exists('antichrist_engine_foundation_ai_content')
                ? antichrist_engine_foundation_ai_content()
                : '<p class="foundation-lead">The AI Engine page is provisioned by the FFTAC AI Engine plugin.</p>',
            'nav_label'  => 'AI Engine',
            'menu_order' => 50,
        ),
        'texts' => array(
            'title'      => 'Texts',
            'slug'       => 'texts',
            'template'   => 'template-texts.php',
            'content'    => antichrist_engine_foundation_texts_content(),
            'nav_label'  => 'Texts',
            'menu_order' => 60,
        ),
        'symbols' => array(
            'title'      => 'Symbols',
            'slug'       => 'symbols',
            'template'   => 'template-symbols.php',
            'content'    => antichrist_engine_foundation_symbols_content(),
            'nav_label'  => 'Symbols',
            'menu_order' => 70,
        ),
        'downloads' => array(
            'title'      => 'Downloads',
            'slug'       => 'downloads',
            'template'   => 'template-downloads.php',
            'content'    => antichrist_engine_foundation_downloads_content(),
            'nav_label'  => 'Downloads',
            'menu_order' => 75,
        ),
        'about' => array(
            'title'      => 'About',
            'slug'       => 'about',
            'template'   => 'template-about.php',
            'content'    => antichrist_engine_foundation_about_content(),
            'nav_label'  => 'About',
            'menu_order' => 80,
        ),
        'questions' => array(
            'title'      => 'Doctrine Q&A',
            'slug'       => 'doctrine-qa',
            'template'   => 'template-questions.php',
            'content'    => antichrist_engine_foundation_questions_content(),
            'nav_label'  => 'Q&A',
            'menu_order' => 92,
        ),
        'contact' => array(
            'title'      => 'Contact',
            'slug'       => 'contact',
            'template'   => 'template-contact.php',
            'content'    => antichrist_engine_foundation_contact_content(),
            'nav_label'  => 'Contact',
            'menu_order' => 95,
        ),
        'support' => array(
            'title'      => 'Support the Record',
            'slug'       => 'support',
            'template'   => 'template-support.php',
            'content'    => antichrist_engine_foundation_support_content(),
            'nav_label'  => 'Support',
            'menu_order' => 97,
        ),
        'join' => array(
            'title'      => 'Join',
            'slug'       => 'join',
            'template'   => 'template-join.php',
            'content'    => antichrist_engine_foundation_join_content(),
            'nav_label'  => 'Join',
            'menu_order' => 100,
        ),
        'journal' => array(
            'title'      => 'Journal',
            'slug'       => 'journal',
            'template'   => 'template-journal.php',
            'content'    => antichrist_engine_foundation_journal_content(),
            'nav_label'  => 'Journal',
            'menu_order' => 90,
        ),
        'privacy' => array(
            'title'      => 'Privacy Policy',
            'slug'       => 'privacy-policy',
            'template'   => 'template-governance.php',
            'content'    => antichrist_engine_foundation_privacy_content(),
            'nav_label'  => 'Privacy',
            'menu_order' => 105,
        ),
        'terms' => array(
            'title'      => 'Terms of Use',
            'slug'       => 'terms-of-use',
            'template'   => 'template-governance.php',
            'content'    => antichrist_engine_foundation_terms_content(),
            'nav_label'  => 'Terms',
            'menu_order' => 110,
        ),
        'community' => array(
            'title'      => 'Community Guidelines',
            'slug'       => 'community-guidelines',
            'template'   => 'template-governance.php',
            'content'    => antichrist_engine_foundation_community_content(),
            'nav_label'  => 'Community',
            'menu_order' => 115,
        ),
        'sitemap' => array(
            'title'      => 'Site Map',
            'slug'       => 'site-map',
            'template'   => 'template-sitemap.php',
            'content'    => antichrist_engine_foundation_sitemap_content(),
            'nav_label'  => 'Site Map',
            'menu_order' => 120,
        ),
    );

    foreach ($pillars as $key => $pillar) {
        $pages['pillar_' . $key] = array(
            'title'      => $pillar['title'],
            'slug'       => $pillar['slug'],
            'content'    => $pillar['content'],
            'parent'     => 'philosophy',
            'menu_order' => 100,
        );
    }

    return $pages;
}