give
Last commit date
assets
3 years ago
blocks
3 years ago
includes
3 years ago
languages
3 years ago
sample-data
6 years ago
src
3 years ago
templates
3 years ago
vendor
3 years ago
give.php
3 years ago
license.txt
6 years ago
readme.txt
3 years ago
uninstall.php
3 years ago
wpml-config.xml
6 years ago
give.php
549 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Plugin Name: Give - Donation Plugin |
| 5 | * Plugin URI: https://givewp.com |
| 6 | * Description: The most robust, flexible, and intuitive way to accept donations on WordPress. |
| 7 | * Author: GiveWP |
| 8 | * Author URI: https://givewp.com/ |
| 9 | * Version: 2.27.2 |
| 10 | * Requires at least: 5.0 |
| 11 | * Requires PHP: 7.0 |
| 12 | * Text Domain: give |
| 13 | * Domain Path: /languages |
| 14 | * |
| 15 | * Give is free software: you can redistribute it and/or modify |
| 16 | * it under the terms of the GNU General Public License as published by |
| 17 | * the Free Software Foundation, either version 3 of the License, or |
| 18 | * any later version. |
| 19 | * |
| 20 | * Give is distributed in the hope that it will be useful, |
| 21 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 22 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 23 | * GNU General Public License for more details. |
| 24 | * |
| 25 | * You should have received a copy of the GNU General Public License |
| 26 | * along with Give. If not, see <https://www.gnu.org/licenses/>. |
| 27 | * |
| 28 | * A Tribute to Open Source: |
| 29 | * |
| 30 | * "Open source software is software that can be freely used, changed, and shared (in modified or unmodified form) by |
| 31 | * anyone. Open source software is made by many people, and distributed under licenses that comply with the Open Source |
| 32 | * Definition." |
| 33 | * |
| 34 | * -- The Open Source Initiative |
| 35 | * |
| 36 | * Give is a tribute to the spirit and philosophy of Open Source. We at GiveWP gladly embrace the Open Source |
| 37 | * philosophy both in how Give itself was developed, and how we hope to see others build more from our code base. |
| 38 | * |
| 39 | * Give would not have been possible without the tireless efforts of WordPress and the surrounding Open Source projects |
| 40 | * and their talented developers. Thank you all for your contribution to WordPress. |
| 41 | * |
| 42 | * - The GiveWP Team |
| 43 | */ |
| 44 | |
| 45 | use Give\Container\Container; |
| 46 | use Give\DonationForms\Repositories\DonationFormsRepository; |
| 47 | use Give\DonationForms\ServiceProvider as DonationFormsServiceProvider; |
| 48 | use Give\Donations\Repositories\DonationRepository; |
| 49 | use Give\Donations\ServiceProvider as DonationServiceProvider; |
| 50 | use Give\DonationSummary\ServiceProvider as DonationSummaryServiceProvider; |
| 51 | use Give\DonorDashboards\Profile; |
| 52 | use Give\DonorDashboards\ServiceProvider as DonorDashboardsServiceProvider; |
| 53 | use Give\DonorDashboards\Tabs\TabsRegister; |
| 54 | use Give\Donors\Repositories\DonorRepositoryProxy; |
| 55 | use Give\Donors\ServiceProvider as DonorsServiceProvider; |
| 56 | use Give\Form\LegacyConsumer\ServiceProvider as FormLegacyConsumerServiceProvider; |
| 57 | use Give\Form\Templates; |
| 58 | use Give\Framework\Database\ServiceProvider as DatabaseServiceProvider; |
| 59 | use Give\Framework\DesignSystem\DesignSystemServiceProvider; |
| 60 | use Give\Framework\Exceptions\Primitives\InvalidArgumentException; |
| 61 | use Give\Framework\Exceptions\UncaughtExceptionLogger; |
| 62 | use Give\Framework\Http\ServiceProvider as HttpServiceProvider; |
| 63 | use Give\Framework\Migrations\MigrationsServiceProvider; |
| 64 | use Give\Framework\PaymentGateways\PaymentGatewayRegister; |
| 65 | use Give\Framework\ValidationRules\ValidationRulesServiceProvider; |
| 66 | use Give\Framework\WordPressShims\ServiceProvider as WordPressShimsServiceProvider; |
| 67 | use Give\LegacySubscriptions\ServiceProvider as LegacySubscriptionsServiceProvider; |
| 68 | use Give\License\LicenseServiceProvider; |
| 69 | use Give\Log\LogServiceProvider; |
| 70 | use Give\MigrationLog\MigrationLogServiceProvider; |
| 71 | use Give\MultiFormGoals\ServiceProvider as MultiFormGoalsServiceProvider; |
| 72 | use Give\PaymentGateways\ServiceProvider as PaymentGatewaysServiceProvider; |
| 73 | use Give\Promotions\ServiceProvider as PromotionsServiceProvider; |
| 74 | use Give\Revenue\RevenueServiceProvider; |
| 75 | use Give\Route\Form as FormRoute; |
| 76 | use Give\ServiceProviders\GlobalStyles as GlobalStylesServiceProvider; |
| 77 | use Give\ServiceProviders\LegacyServiceProvider; |
| 78 | use Give\ServiceProviders\Onboarding; |
| 79 | use Give\ServiceProviders\PaymentGateways; |
| 80 | use Give\ServiceProviders\RestAPI; |
| 81 | use Give\ServiceProviders\Routes; |
| 82 | use Give\ServiceProviders\ServiceProvider; |
| 83 | use Give\Subscriptions\Repositories\SubscriptionRepository; |
| 84 | use Give\Subscriptions\ServiceProvider as SubscriptionServiceProvider; |
| 85 | use Give\TestData\ServiceProvider as TestDataServiceProvider; |
| 86 | use Give\Tracking\TrackingServiceProvider; |
| 87 | use Give\VendorOverrides\Validation\ValidationServiceProvider; |
| 88 | |
| 89 | // Exit if accessed directly. |
| 90 | if (!defined('ABSPATH')) { |
| 91 | exit; |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * Main Give Class |
| 96 | * |
| 97 | * @since 2.21.0 Remove php dependency validation logic and constant |
| 98 | * @since 2.19.6 add $donations, $subscriptions, and replace $donors class with DonorRepositoryProxy |
| 99 | * @since 2.8.0 build in a service container |
| 100 | * @since 1.0 |
| 101 | * |
| 102 | * @property-read Give_API $api |
| 103 | * @property-read Give_Async_Process $async_process |
| 104 | * @property-read Give_Comment $comment |
| 105 | * @property-read Give_DB_Donor_Meta $donor_meta |
| 106 | * @property-read Give_Emails $emails |
| 107 | * @property-read Give_Email_Template_Tags $email_tags |
| 108 | * @property-read Give_DB_Form_Meta $form_meta |
| 109 | * @property-read Give_Admin_Settings $give_settings |
| 110 | * @property-read Give_HTML_Elements $html |
| 111 | * @property-read Give_Logging $logs |
| 112 | * @property-read Give_Notices $notices |
| 113 | * @property-read Give_DB_Payment_Meta $payment_meta |
| 114 | * @property-read Give_Roles $roles |
| 115 | * @property-read FormRoute $routeForm |
| 116 | * @property-read Templates $templates |
| 117 | * @property-read Give_Scripts $scripts |
| 118 | * @property-read Give_DB_Sequential_Ordering $sequential_donation_db |
| 119 | * @property-read Give_Sequential_Donation_Number $seq_donation_number |
| 120 | * @property-read Give_Session $session |
| 121 | * @property-read Give_DB_Sessions $session_db |
| 122 | * @property-read Give_Tooltips $tooltips |
| 123 | * @property-read PaymentGatewayRegister $gateways |
| 124 | * @property-read DonationRepository $donations |
| 125 | * @property-read DonorRepositoryProxy $donors |
| 126 | * @property-read SubscriptionRepository $subscriptions |
| 127 | * @property-read DonationFormsRepository $donationForms |
| 128 | * @property-read Profile $donorDashboard |
| 129 | * @property-read TabsRegister $donorDashboardTabs |
| 130 | * @property-read Give_Recurring_DB_Subscription_Meta $subscription_meta |
| 131 | * |
| 132 | * @mixin Container |
| 133 | */ |
| 134 | final class Give |
| 135 | { |
| 136 | /** |
| 137 | * Give Template Loader Object |
| 138 | * |
| 139 | * @since 1.0 |
| 140 | * @access public |
| 141 | * |
| 142 | * @var Give_Template_Loader object |
| 143 | */ |
| 144 | public $template_loader; |
| 145 | |
| 146 | /** |
| 147 | * Give No Login Object |
| 148 | * |
| 149 | * @since 1.0 |
| 150 | * @access public |
| 151 | * |
| 152 | * @var Give_Email_Access object |
| 153 | */ |
| 154 | public $email_access; |
| 155 | |
| 156 | /** |
| 157 | * Give_Stripe Object. |
| 158 | * |
| 159 | * @since 2.5.0 |
| 160 | * @access public |
| 161 | * |
| 162 | * @var Give_Stripe |
| 163 | */ |
| 164 | public $stripe; |
| 165 | |
| 166 | /** |
| 167 | * @since 2.8.0 |
| 168 | * |
| 169 | * @var Container |
| 170 | */ |
| 171 | private $container; |
| 172 | |
| 173 | /** |
| 174 | * @since 2.25.0 added HttpServiceProvider |
| 175 | * @since 2.19.6 added Donors, Donations, and Subscriptions |
| 176 | * @since 2.8.0 |
| 177 | * |
| 178 | * @var array Array of Service Providers to load |
| 179 | */ |
| 180 | private $serviceProviders = [ |
| 181 | LegacyServiceProvider::class, |
| 182 | RestAPI::class, |
| 183 | Routes::class, |
| 184 | PaymentGateways::class, |
| 185 | Onboarding::class, |
| 186 | MigrationsServiceProvider::class, |
| 187 | RevenueServiceProvider::class, |
| 188 | MultiFormGoalsServiceProvider::class, |
| 189 | DonorDashboardsServiceProvider::class, |
| 190 | TrackingServiceProvider::class, |
| 191 | TestDataServiceProvider::class, |
| 192 | MigrationLogServiceProvider::class, |
| 193 | LogServiceProvider::class, |
| 194 | FormLegacyConsumerServiceProvider::class, |
| 195 | LicenseServiceProvider::class, |
| 196 | Give\Email\ServiceProvider::class, |
| 197 | DonationSummaryServiceProvider::class, |
| 198 | PaymentGatewaysServiceProvider::class, |
| 199 | LegacySubscriptionsServiceProvider::class, |
| 200 | Give\Exports\ServiceProvider::class, |
| 201 | DonationServiceProvider::class, |
| 202 | DonorsServiceProvider::class, |
| 203 | SubscriptionServiceProvider::class, |
| 204 | DonationFormsServiceProvider::class, |
| 205 | PromotionsServiceProvider::class, |
| 206 | LegacySubscriptionsServiceProvider::class, |
| 207 | WordPressShimsServiceProvider::class, |
| 208 | DatabaseServiceProvider::class, |
| 209 | GlobalStylesServiceProvider::class, |
| 210 | ValidationServiceProvider::class, |
| 211 | ValidationRulesServiceProvider::class, |
| 212 | HttpServiceProvider::class, |
| 213 | DesignSystemServiceProvider::class, |
| 214 | ]; |
| 215 | |
| 216 | /** |
| 217 | * @since 2.8.0 |
| 218 | * |
| 219 | * @var bool Make sure the providers are loaded only once |
| 220 | */ |
| 221 | private $providersLoaded = false; |
| 222 | |
| 223 | /** |
| 224 | * Give constructor. |
| 225 | * |
| 226 | * Sets up the Container to be used for managing all other instances and data |
| 227 | * |
| 228 | * @since 2.8.0 |
| 229 | */ |
| 230 | public function __construct() |
| 231 | { |
| 232 | $this->container = new Container(); |
| 233 | } |
| 234 | |
| 235 | /** |
| 236 | * Bootstraps the Give Plugin |
| 237 | * |
| 238 | * @since 2.8.0 |
| 239 | */ |
| 240 | public function boot() |
| 241 | { |
| 242 | $this->setup_constants(); |
| 243 | |
| 244 | // Add compatibility notice for recurring and stripe support with Give 2.5.0. |
| 245 | add_action('admin_notices', [$this, 'display_old_recurring_compatibility_notice']); |
| 246 | |
| 247 | add_action('plugins_loaded', [$this, 'init'], 0); |
| 248 | |
| 249 | register_activation_hook(GIVE_PLUGIN_FILE, [$this, 'install']); |
| 250 | |
| 251 | do_action('give_loaded'); |
| 252 | } |
| 253 | |
| 254 | /** |
| 255 | * Init Give when WordPress Initializes. |
| 256 | * |
| 257 | * @since 1.8.9 |
| 258 | */ |
| 259 | public function init() |
| 260 | { |
| 261 | /** |
| 262 | * Fires before the Give core is initialized. |
| 263 | * |
| 264 | * @since 1.8.9 |
| 265 | */ |
| 266 | do_action('before_give_init'); |
| 267 | |
| 268 | // Set up localization. |
| 269 | $this->load_textdomain(); |
| 270 | |
| 271 | $this->bindClasses(); |
| 272 | |
| 273 | $this->setupExceptionHandler(); |
| 274 | |
| 275 | $this->loadServiceProviders(); |
| 276 | |
| 277 | // Load form template |
| 278 | $this->templates->load(); |
| 279 | |
| 280 | // Load routes. |
| 281 | $this->routeForm->init(); |
| 282 | |
| 283 | /** |
| 284 | * Fire the action after Give core loads. |
| 285 | * |
| 286 | * @since 1.8.7 |
| 287 | * |
| 288 | * @param Give class instance. |
| 289 | * |
| 290 | */ |
| 291 | do_action('give_init', $this); |
| 292 | } |
| 293 | |
| 294 | /** |
| 295 | * Binds the initial classes to the service provider. |
| 296 | * |
| 297 | * @since 2.8.0 |
| 298 | */ |
| 299 | private function bindClasses() |
| 300 | { |
| 301 | $this->container->singleton('templates', Templates::class); |
| 302 | $this->container->singleton('routeForm', FormRoute::class); |
| 303 | } |
| 304 | |
| 305 | /** |
| 306 | * Setup plugin constants |
| 307 | * |
| 308 | * @since 1.0 |
| 309 | * @access private |
| 310 | * |
| 311 | * @return void |
| 312 | */ |
| 313 | private function setup_constants() |
| 314 | { |
| 315 | // Plugin version. |
| 316 | if (!defined('GIVE_VERSION')) { |
| 317 | define('GIVE_VERSION', '2.27.2'); |
| 318 | } |
| 319 | |
| 320 | // Plugin Root File. |
| 321 | if (!defined('GIVE_PLUGIN_FILE')) { |
| 322 | define('GIVE_PLUGIN_FILE', __FILE__); |
| 323 | } |
| 324 | |
| 325 | // Plugin Folder Path. |
| 326 | if (!defined('GIVE_PLUGIN_DIR')) { |
| 327 | define('GIVE_PLUGIN_DIR', plugin_dir_path(GIVE_PLUGIN_FILE)); |
| 328 | } |
| 329 | |
| 330 | // Plugin Folder URL. |
| 331 | if (!defined('GIVE_PLUGIN_URL')) { |
| 332 | define('GIVE_PLUGIN_URL', plugin_dir_url(GIVE_PLUGIN_FILE)); |
| 333 | } |
| 334 | |
| 335 | // Plugin Basename aka: "give/give.php". |
| 336 | if (!defined('GIVE_PLUGIN_BASENAME')) { |
| 337 | define('GIVE_PLUGIN_BASENAME', plugin_basename(GIVE_PLUGIN_FILE)); |
| 338 | } |
| 339 | |
| 340 | // Make sure CAL_GREGORIAN is defined. |
| 341 | if (!defined('CAL_GREGORIAN')) { |
| 342 | define('CAL_GREGORIAN', 1); |
| 343 | } |
| 344 | } |
| 345 | |
| 346 | /** |
| 347 | * Loads the plugin language files. |
| 348 | * |
| 349 | * @since 1.0 |
| 350 | * @access public |
| 351 | * |
| 352 | * @return void |
| 353 | */ |
| 354 | public function load_textdomain() |
| 355 | { |
| 356 | // Set filter for Give's languages directory |
| 357 | $give_lang_dir = dirname(plugin_basename(GIVE_PLUGIN_FILE)) . '/languages/'; |
| 358 | $give_lang_dir = apply_filters('give_languages_directory', $give_lang_dir); |
| 359 | |
| 360 | // Traditional WordPress plugin locale filter. |
| 361 | $locale = is_admin() && function_exists('get_user_locale') ? get_user_locale() : get_locale(); |
| 362 | $locale = apply_filters('plugin_locale', $locale, 'give'); |
| 363 | |
| 364 | unload_textdomain('give'); |
| 365 | load_textdomain('give', WP_LANG_DIR . '/give/give-' . $locale . '.mo'); |
| 366 | load_plugin_textdomain('give', false, $give_lang_dir); |
| 367 | } |
| 368 | |
| 369 | /** |
| 370 | * Display compatibility notice for Give 2.5.0 and Recurring 1.8.13 when Stripe premium is not active. |
| 371 | * |
| 372 | * @since 2.5.0 |
| 373 | * |
| 374 | * @return void |
| 375 | */ |
| 376 | public function display_old_recurring_compatibility_notice() |
| 377 | { |
| 378 | // Show notice, if incompatibility found. |
| 379 | if ( |
| 380 | defined('GIVE_RECURRING_VERSION') |
| 381 | && version_compare(GIVE_RECURRING_VERSION, '1.9.0', '<') |
| 382 | && defined('GIVE_STRIPE_VERSION') |
| 383 | && version_compare(GIVE_STRIPE_VERSION, '2.2.0', '<') |
| 384 | ) { |
| 385 | $message = sprintf( |
| 386 | __( |
| 387 | '<strong>Attention:</strong> GiveWP 2.5.0+ requires the latest version of the Recurring Donations add-on to process payments properly with Stripe. Please update to the latest version add-on to resolve compatibility issues. If your license is active, you should see the update available in WordPress. Otherwise, you can access the latest version by <a href="%1$s" target="_blank">logging into your account</a> and visiting <a href="%1$s" target="_blank">your downloads</a> page on the GiveWP website.', |
| 388 | 'give' |
| 389 | ), |
| 390 | esc_url('https://givewp.com/wp-login.php'), |
| 391 | esc_url('https://givewp.com/my-account/#tab_downloads') |
| 392 | ); |
| 393 | |
| 394 | Give()->notices->register_notice( |
| 395 | [ |
| 396 | 'id' => 'give-compatibility-with-old-recurring', |
| 397 | 'description' => $message, |
| 398 | 'dismissible_type' => 'user', |
| 399 | 'dismiss_interval' => 'shortly', |
| 400 | ] |
| 401 | ); |
| 402 | } |
| 403 | } |
| 404 | |
| 405 | public function install() |
| 406 | { |
| 407 | $this->loadServiceProviders(); |
| 408 | give_install(); |
| 409 | } |
| 410 | |
| 411 | /** |
| 412 | * Load all the service providers to bootstrap the various parts of the application. |
| 413 | * |
| 414 | * @since 2.8.0 |
| 415 | */ |
| 416 | private function loadServiceProviders() |
| 417 | { |
| 418 | if ($this->providersLoaded) { |
| 419 | return; |
| 420 | } |
| 421 | |
| 422 | $providers = []; |
| 423 | |
| 424 | foreach ($this->serviceProviders as $serviceProvider) { |
| 425 | if (!is_subclass_of($serviceProvider, ServiceProvider::class)) { |
| 426 | throw new InvalidArgumentException( |
| 427 | "$serviceProvider class must implement the ServiceProvider interface" |
| 428 | ); |
| 429 | } |
| 430 | |
| 431 | /** @var ServiceProvider $serviceProvider */ |
| 432 | $serviceProvider = new $serviceProvider(); |
| 433 | |
| 434 | $serviceProvider->register(); |
| 435 | |
| 436 | $providers[] = $serviceProvider; |
| 437 | } |
| 438 | |
| 439 | foreach ($providers as $serviceProvider) { |
| 440 | $serviceProvider->boot(); |
| 441 | } |
| 442 | |
| 443 | $this->providersLoaded = true; |
| 444 | } |
| 445 | |
| 446 | /** |
| 447 | * Register a Service Provider for bootstrapping |
| 448 | * |
| 449 | * @since 2.8.0 |
| 450 | * |
| 451 | * @param string $serviceProvider |
| 452 | */ |
| 453 | public function registerServiceProvider($serviceProvider) |
| 454 | { |
| 455 | $this->serviceProviders[] = $serviceProvider; |
| 456 | } |
| 457 | |
| 458 | /** |
| 459 | * Magic properties are passed to the service container to retrieve the data. |
| 460 | * |
| 461 | * @since 2.8.0 retrieve from the service container |
| 462 | * @since 2.7.0 |
| 463 | * |
| 464 | * @param string $propertyName |
| 465 | * |
| 466 | * @return mixed |
| 467 | * @throws Exception |
| 468 | */ |
| 469 | public function __get($propertyName) |
| 470 | { |
| 471 | return $this->container->get($propertyName); |
| 472 | } |
| 473 | |
| 474 | /** |
| 475 | * Magic methods are passed to the service container. |
| 476 | * |
| 477 | * @since 2.8.0 |
| 478 | * |
| 479 | * @param $arguments |
| 480 | * |
| 481 | * @param $name |
| 482 | * |
| 483 | * @return mixed |
| 484 | */ |
| 485 | public function __call($name, $arguments) |
| 486 | { |
| 487 | return call_user_func_array([$this->container, $name], $arguments); |
| 488 | } |
| 489 | |
| 490 | /** |
| 491 | * Retrieves the underlying container instance. This isn't usually necessary, but sometimes we want to pass along |
| 492 | * the container itself. |
| 493 | * |
| 494 | * @since 2.24.0 |
| 495 | */ |
| 496 | public function getContainer(): Container |
| 497 | { |
| 498 | return $this->container; |
| 499 | } |
| 500 | |
| 501 | /** |
| 502 | * Sets up the Exception Handler to catch and handle uncaught exceptions |
| 503 | * |
| 504 | * @since 2.11.1 |
| 505 | */ |
| 506 | private function setupExceptionHandler() |
| 507 | { |
| 508 | $handler = new UncaughtExceptionLogger(); |
| 509 | $handler->setupExceptionHandler(); |
| 510 | } |
| 511 | } |
| 512 | |
| 513 | /** |
| 514 | * Start Give |
| 515 | * |
| 516 | * The main function responsible for returning the one true Give instance to functions everywhere. |
| 517 | * |
| 518 | * Use this function like you would a global variable, except without needing |
| 519 | * to declare the global. |
| 520 | * |
| 521 | * Example: <?php $give = Give(); ?> |
| 522 | * |
| 523 | * @since 2.8.0 add parameter for quick retrieval from container |
| 524 | * @since 1.0 |
| 525 | * |
| 526 | * @param null $abstract Selector for data to retrieve from the service container |
| 527 | * |
| 528 | * @return object|Give |
| 529 | */ |
| 530 | function give($abstract = null) |
| 531 | { |
| 532 | static $instance = null; |
| 533 | |
| 534 | if ($instance === null) { |
| 535 | $instance = new Give(); |
| 536 | } |
| 537 | |
| 538 | if ($abstract !== null) { |
| 539 | return $instance->make($abstract); |
| 540 | } |
| 541 | |
| 542 | return $instance; |
| 543 | } |
| 544 | |
| 545 | require __DIR__ . '/vendor/autoload.php'; |
| 546 | require __DIR__ . '/vendor/vendor-prefixed/autoload.php'; |
| 547 | |
| 548 | give()->boot(); |
| 549 |