Esempio n. 1
0
 /**
  * Get country prefix based on campaign id.
  *
  * @param int $campaign_id
  *
  * @return string
  */
 public function getCountry($campaign_id)
 {
     $country = '';
     if ($campaign_id > 0) {
         $speakcivi = new CRM_Speakcivi_Page_Speakcivi();
         $speakcivi->setDefaults();
         $speakcivi->customFields = $speakcivi->getCustomFields($campaign_id);
         $language = $speakcivi->getLanguage();
         if ($language != '') {
             $tab = explode('_', $language);
             if (strlen($tab[0]) == 2) {
                 $country = '/' . $tab[0];
             }
         }
     }
     return $country;
 }
Esempio n. 2
0
session_start();
$settingsFile = trim(implode('', file('path.inc'))) . '/civicrm.settings.php';
define('CIVICRM_SETTINGS_PATH', $settingsFile);
$error = @(include_once $settingsFile);
if ($error == false) {
    echo "Could not load the settings file at: {$settingsFile}\n";
    exit;
}
// Load class loader
global $civicrm_root;
require_once $civicrm_root . '/CRM/Core/ClassLoader.php';
CRM_Core_ClassLoader::singleton()->register();
require_once 'CRM/Core/Config.php';
$config = CRM_Core_Config::singleton();
// tests:
$param = (object) array('action_name' => 'Testowa kampania', 'action_type' => 'petition', 'action_technical_type' => 'act2.wemove.eu:petition', 'external_id' => 49, 'create_dt' => '2016-01-08T11:56:59.617+01:00', 'cons_hash' => (object) array('firstname' => 'Tomasz', 'lastname' => 'Pietrzkowski [M]', 'emails' => array(0 => (object) array('email' => '*****@*****.**')), 'addresses' => array(0 => (object) array('zip' => '[pl] 02-222'))), 'boolean_collection' => true, 'comment' => 'Komentarz do petycji');
$speakcivi = new CRM_Speakcivi_Page_Speakcivi();
$speakcivi->setDefaults();
$speakcivi->setCountry($param);
$speakcivi->campaignObj = new CRM_Speakcivi_Logic_Campaign();
$speakcivi->campaign = $speakcivi->campaignObj->getCampaign($param->external_id);
$speakcivi->campaign = $speakcivi->campaignObj->setCampaign($param->external_id, $speakcivi->campaign);
if ($speakcivi->campaignObj->isValidCampaign($speakcivi->campaign)) {
    $speakcivi->campaignId = $speakcivi->campaign['id'];
    $speakcivi->campaignObj->customFields = $speakcivi->campaignObj->getCustomFields($speakcivi->campaignId);
    $speakcivi->locale = $speakcivi->campaignObj->getLanguage();
} else {
    echo 'blad :-[';
    exit;
}
$speakcivi->petition($param);