/var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/src/DonationSummary
Edit: /var/www/vhosts/ihelp.ro/ajutam.ro/wp-content/plugins/give/src/DonationSummary/SummaryView.php (3363B)
formID = $formID;
$this->template = Template::getActiveID($formID);
$this->templateOptions = Template::getOptions($formID);
/**
* @hook give_donation_form_user_info
* @hook give_donation_form_before_submit
*/
add_action($this->getFormTemplateLocation(), [$this, 'maybeRender']);
}
public function maybeRender()
{
if ($this->isDonationSummaryEnabled()) {
if (in_array(Template::getActiveID($this->formID), [ 'sequoia', 'classic'])) {
$this->render();
}
}
}
/**
* @since 2.17.0
*/
public function render()
{
do_action( 'give_donation_summary_top' );
include 'resources/views/summary.php';
do_action( 'give_donation_summary_bottom' );
}
public function getPrimaryColor()
{
return $this->templateOptions['visual_appearance']['primary_color'];
}
/**
* @since 2.17.0
* @return string
*/
public function getFormTemplateLocation()
{
if (isset($this->templateOptions['payment_information']) && isset($this->templateOptions['payment_information']['donation_summary_location'])) {
return $this->templateOptions['payment_information']['donation_summary_location'];
}
return 'give_donation_form_before_submit'; // Default location.
}
/**
* @since 2.17.0
* @return string
*/
public function getSummaryHeading()
{
if (isset($this->templateOptions['payment_information']) && isset($this->templateOptions['payment_information']['donation_summary_heading'])) {
return $this->templateOptions['payment_information']['donation_summary_heading'];
}
return '';
}
/**
* @since 2.17.0
* @return bool
*/
public function isDonationSummaryEnabled()
{
return isset($this->templateOptions['payment_information'])
&& isset($this->templateOptions['payment_information']['donation_summary_enabled'])
&& give_is_setting_enabled($this->templateOptions['payment_information']['donation_summary_enabled']);
}
/**
* @since 2.17.0
* @return bool
*/
protected function isFeeRecoveryEnabled()
{
if (class_exists('\GiveFeeRecovery\Helpers\Form\Form')) {
return \GiveFeeRecovery\Helpers\Form\Form::canRecoverFee($this->formID);
}
return false;
}
/**
* @since 2.19.0 - remove check for Give_Recurring
* @return bool
* @since 2.17.0
*/
protected function isRecurringEnabled()
{
return give_recurring_is_recurring($this->formID);
}
/**
* @since 2.18.0
* @return bool
*/
protected function isMultiStep()
{
return $this->template === 'sequoia';
}
}