Skip to content
wiki.fftac.org

Antichrist Content System Implementation - Source Excerpt 26

Back to Antichrist Content System Implementation

Summary

This source excerpt preserves a bounded section of Antichrist.net/wp-content/plugins/antichrist-content-system/includes/antichrist-content-system-implementation.php so readers can inspect the evidence without opening the full source file.

**Source path:** Antichrist.net/wp-content/plugins/antichrist-content-system/includes/antichrist-content-system-implementation.php

/**
 * Build a legacy artifact wrapper.
 *
 * @param string $artifact Artifact key.
 * @return string
 */
function acn_cs_legacy_artifact_content( $artifact ) {
	$artifacts = array(
		'antichrist-cx' => array(
			'title' => 'AntiChrist cx',
			'era'   => 'Legacy journal material associated with entries from roughly 2000-2004, later circulated as a book-like proof artifact.',
			'note'  => 'Reports in the handoff describe anti-Christian polemic, recruitment-style appeals, and passages that require careful contextualization.',
		),
		'al-qaeda-net' => array(
			'title' => 'Al Qaeda Net',
			'era'   => 'Legacy journal material associated with 2005-era political and apocalyptic rhetoric.',
			'note'  => 'Handoff review flags this artifact as especially high-risk because it includes extremist-coded and violent political rhetoric.',
		),
	);

	$item = isset( $artifacts[ $artifact ] ) ? $artifacts[ $artifact ] : $artifacts['antichrist-cx'];
	$html  = '<div class="archive-warning"><strong>Legacy artifact</strong><p>' . esc_html( $item['title'] ) . ' is preserved only as historical and research context. This material is not endorsed as instruction, recruitment, advocacy, or prophecy.</p></div>';
	$html .= '<section class="section-directory"><h2>Context card</h2><div class="section-directory-grid">';
	$html .= '<article class="section-directory-card"><strong>Archive status</strong><span>Context wrapper published. Raw-file access is intentionally not foregrounded by this page.</span></article>';
	$html .= '<article class="section-directory-card"><strong>Approximate era</strong><span>' . esc_html( $item['era'] ) . '</span></article>';
	$html .= '<article class="section-directory-card"><strong>Safety note</strong><span>' . esc_html( $item['note'] ) . '</span></article>';
	$html .= '</div></section>';
	$html .= '<section class="editorial-callout"><h2>Read critically</h2><p>Use safer analysis pages first: <a href="' . esc_url( home_url( '/community-baseline/' ) ) . '">Community Baseline</a>, <a href="' . esc_url( home_url( '/archive/' ) ) . '">Archive</a>, <a href="' . esc_url( home_url( '/apocalyptic-ai/' ) ) . '">Apocalyptic AI</a>, <a href="' . esc_url( home_url( '/state-and-religion/' ) ) . '">State and Religion</a>, and <a href="' . esc_url( home_url( '/surveillance/' ) ) . '">Surveillance</a>. Do not treat legacy rhetoric as a current call to action.</p></section>';
	return $html;
}

/**
 * Build legacy utility-page context.
 *
 * @return string
 */
function acn_cs_legacy_utility_pages_content() {
	$html  = '<div class="editorial-callout"><p>Older utility pages, including the image-to-HTML converter route, are treated as legacy site residue. They are not the identity of the current publication.</p></div>';
	$html .= '<section class="section-directory"><h2>Current handling</h2><div class="section-directory-grid">';
	$html .= '<article class="section-directory-card"><strong>Utility pages</strong><span>Generic tools are demoted behind archive context when they distract from the research mission.</span></article>';
	$html .= '<article class="section-directory-card"><strong>Branding cleanup</strong><span>Footer and homepage language now use Antichrist.net research-archive framing rather than mixed personal or older project labels.</span></article>';
	$html .= '<article class="section-directory-card"><strong>No trackers</strong><span>The theme does not add external tracking scripts or affiliate funnels.</span></article>';
	$html .= '</div></section>';
	return $html;
}

/**
 * Build the public timeline and issue-map page.
 *
 * @return string
 */
function acn_cs_timeline_content() {
	$events = array(
		'Early Christian texts' => 'Johannine antichrist language, Pauline lawlessness, Revelation imagery, and the first layers of reception history.',
		'Empire and church' => 'Imperial power, orthodoxy, heresy, and accusations that turn political conflict into sacred drama.',
		'Reformation polemic' => 'Antichrist labels used against institutions, rulers, and rival confessions.',
		'Modern nationalism' => 'Religious identity folded into nation, grievance, civilizational politics, and state legitimacy.',
		'Post-9/11 security culture' => 'Terror, surveillance, suspicion, and apocalyptic enemy images in networked public life.',
		'AI prophecy culture' => 'Synthetic authority, automated interpretation, techno-salvation, and fear of global control.',
		'2025-2026 religious-liberty disputes' => 'Executive-branch faith initiatives and civil-society challenges become material for studying state and religion, not for scapegoating believers.',
	);

	$html  = '<div class="editorial-callout"><p>This timeline is an issue map, not a prediction clock. It helps readers locate recurring patterns: sacred power, false saviors, state legitimacy, surveillance, dissent, symbolic escalation, and pluralist resistance.</p></div>';
	$html .= '<section class="section-directory"><h2>Issue map</h2><ol class="timeline-list">';
	foreach ( $events as $label => $text ) {
		$html .= '<li><strong>' . esc_html( $label ) . '</strong><span>' . esc_html( $text ) . '</span></li>';
	}
	$html .= '</ol></section>';
	return $html;
}

/**
 * Build the symbolic glossary page.
 *
 * @return string
 */
function acn_cs_symbols_content() {
	$symbols = array(
		'Antichrist' => 'A contested Christian term for opposition, counterfeit salvation, deception, or anti-messianic power. This site treats it as tradition and symbol, not a label for living people.',
		'Beast' => 'An image of empire, domination, worship of power, and system-level coercion in apocalyptic imagination.',
		'Katechon' => 'The restrainer or delaying force: a concept used in theology and political theory to discuss order, delay, and lawlessness.',
		'Babylon' => 'A symbolic city of empire, luxury, coercion, exile, and moral confusion.',
		'False Dawn' => 'A promised salvation that arrives as domination, dependency, or premature certainty.',
		'Mirror King' => 'A literary figure for authority that reflects collective desire back as sacred command.',
		'Crowned Contradiction' => 'A ruler, system, or myth that claims holiness while practicing coercion.',
		'Sacred power' => 'Political or institutional force wrapped in religious legitimacy.',
		'Inverted salvation' => 'A rescue story that reverses moral terms and makes domination look like liberation.',
		'Apocalyptic time' => 'A sense that ordinary politics has become final, cosmic, and urgent.',
		'Digital myth' => 'A networked story that turns data, AI, platforms, or surveillance into sacred or demonic symbols.',
	);

	$html  = '<div class="editorial-callout"><p>The glossary is analytical and literary. It defines recurring symbols so readers can compare traditions and rhetoric without turning metaphor into accusation.</p></div>';
	$html .= '<section class="section-directory"><h2>Symbolic glossary</h2><div class="section-directory-grid glossary-grid">';
	foreach ( $symbols as $term => $definition ) {
		$html .= '<article class="section-directory-card"><strong>' . esc_html( $term ) . '</strong><span>' . esc_html( $definition ) . '</span></article>';
	}
	$html .= '</div></section>';
	return $html;
}

/**
 * Build the state and religion page.
 *
 * @return string
 */
function acn_cs_state_religion_content() {
	$html  = '<div class="editorial-callout"><p>This page studies how governments use religion to legitimize power, discipline dissent, define national identity, and recast civil-rights disputes as sacred conflict. The frame is pluralist: protect religious freedom while resisting state capture of faith.</p></div>';
	$html .= '<section class="section-directory"><h2>Research questions</h2><div class="section-directory-grid">';
	$html .= '<article class="section-directory-card"><strong>Legitimacy</strong><span>How do governments borrow sacred language to make authority feel inevitable, chosen, or immune from criticism?</span></article>';
	$html .= '<article class="section-directory-card"><strong>Religious nationalism</strong><span>When does protection of a faith tradition become a state-backed hierarchy over other believers and nonbelievers?</span></article>';
	$html .= '<article class="section-directory-card"><strong>Institutionalized grievance</strong><span>How can official victimhood narratives convert policy disagreement into existential threat?</span></article>';
	$html .= '<article class="section-directory-card"><strong>Pluralism</strong><span>How can societies protect worship, conscience, and minority faiths without letting government appoint a favored theology?</span></article>';
	$html .= '</div></section>';
	$html .= '<section class="editorial-callout"><h2>Civic frame</h2><p>Criticizing state use of religion is not hatred of religious people. The archive distinguishes believers, institutions, political projects, legal claims, and symbolic rhetoric.</p></section>';
	return $html;
}