Ejemplo n.º 1
0
<?php

require_once '../_header.php';
$camp = get_campaign($_REQUEST['campaign_KEY']);
echo '<h1>Campaign Report</h1>';
echo '<h2>' . $camp['Reference_Name'] . '</h2>';
echo '<strong>Department</strong>: ' . $camp['campaign'] . '</br>';
echo '<strong>Slug</strong>: ' . $camp['campaign_slug'] . '</br>';
$action_options['where'] = ' where campaign_KEY = "' . $_REQUEST['campaign_KEY'] . '" ';
include '../partials/_action_list.php';
$email_blast_options['where'] = ' and e.campaign_KEY = "' . $_REQUEST['campaign_KEY'] . '" ';
include '../partials/_email_blast_list.php';
$donate_page_options['where'] = ' where campaign_KEY = "' . $_REQUEST['campaign_KEY'] . '" ';
include '../partials/_donate_page_list.php';
#Shares
Ejemplo n.º 2
0
<?php

include "_header.php";
$campaign_KEY = $_REQUEST['campaign_KEY'];
$campaign = get_campaign($campaign_KEY);
echo '<h1>' . $campaign['Reference_Name'] . '</h1>';
echo '<strong>Department</strong>: ' . $campaign['campaign'] . '</br>';
echo '<strong>Slug</strong>: ' . $campaign['campaign_slug'] . '</br>';
echo '<strong>Type</strong>: ' . $campaign['campaign_type'] . '</br>';
$email_blast_options['where'] = ' and e.campaign_KEY = "' . $campaign_KEY . '" ';
include 'partials/_email_blast_list.php';
$action_options['where'] = ' where campaign_KEY = "' . $campaign_KEY . '" ';
include 'partials/_action_list.php';
$donate_page_options['where'] = ' where campaign_KEY = "' . $campaign_KEY . '" ';
include 'partials/_donate_page_list.php';
$tell_a_friend_options['where'] = ' where campaign_KEY = "' . $campaign_KEY . '" ';
include 'partials/_tell_a_friend_list.php';
$signup_page_options['where'] = ' where campaign_KEY = "' . $campaign_KEY . '" ';
include 'partials/_signup_page_list.php';
$groups_options['where'] = ' where campaign_KEY = "' . $campaign_KEY . '" ';
include 'partials/_groups_list.php';