예제 #1
0
 /**
  * This function is the main function that is called when the page
  * loads, it decides the which action has to be taken for the page.
  *
  * return null
  * @access public
  */
 function run()
 {
     parent::preProcess();
     $this->listActivities();
 }
예제 #2
0
 /**
  * This function is the main function that is called when the page
  * loads, it decides the which action has to be taken for the page.
  * 
  * return null
  * @access public
  */
 function run()
 {
     parent::preProcess();
     $this->listPledges();
 }
 /**
  * This function is the main function that is called when the page
  * loads, it decides the which action has to be taken for the page.
  *
  * return null
  * @access public
  */
 function run()
 {
     parent::preProcess();
     $this->listParticipations();
 }
예제 #4
0
 /**
  * the main function that is called when the page
  * loads, it decides the which action has to be taken for the page.
  */
 public function run()
 {
     $invoiceSettings = Civi::settings()->get('contribution_invoice_settings');
     $invoicing = CRM_Utils_Array::value('invoicing', $invoiceSettings);
     $defaultInvoicePage = CRM_Utils_Array::value('default_invoice_page', $invoiceSettings);
     $this->assign('invoicing', $invoicing);
     $this->assign('defaultInvoicePage', $defaultInvoicePage);
     parent::preProcess();
     $this->listContribution();
 }
 /**
  * the main function that is called when the page
  * loads, it decides the which action has to be taken for the page.
  *
  */
 public function run()
 {
     parent::preProcess();
     $this->listMemberships();
 }
예제 #6
0
 /**
  * the main function that is called when the page
  * loads, it decides the which action has to be taken for the page.
  */
 public function run()
 {
     $invoiceSettings = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::CONTRIBUTE_PREFERENCES_NAME, 'contribution_invoice_settings');
     $invoicing = CRM_Utils_Array::value('invoicing', $invoiceSettings);
     $this->assign('invoicing', $invoicing);
     parent::preProcess();
     $this->listContribution();
 }
 /**
  * This function is the main function that is called when the page
  * loads, it decides the which action has to be taken for the page.
  *
  * return null
  * @access public
  */
 function run()
 {
     parent::preProcess();
     $this->listContribution();
 }