Normally, when building plugins there's probably a first time for everything. And if there is a second rebuild, compatibility could be handy. For this plugin, the codebase have been browsed and all prior filters have been picked up to maintain anything that looks like a compatibility requirement.
contains a list of the hooks and filters that resides in the old version and what happened to them in the way of transformation into the new version. Some of them are very specifically built for v2.x and the prior conditions but some of them are also possibly vital for third party developers that they are following. Especially if they ever consider this plugin as a replacement for the old one. This page explains each filter and their destiny. It will be updated as they are transformed or thrown away.
Filter | Status | Destiny | Issue |
---|---|---|---|
resurs_obsolete_coexistence_disable | Implemented. But just to make sure that the old version can be disabled, so it won't interfere. | ||
resurs_option | Allows options to be changed on fly. Should not be included. | ||
allow_resurs_run | Disables/enables old plugin to run in sections where it doesn't belong. Resides in allowPluginToRun with preventGlobalInterference. Do not import. Solve the problem. | ||
resurs_bank_simplified_checkout_methods | Unsure of the function. Resides under notify_resurs_admin_parts_disabled which seems to be a notification section. It may have a history to frontend somewhere, but this will probably be left out. | ||
woocommerce_resurs_bank_<type>_checkout_icon (iconified method) | Payment method based filter. Could be handy to import such method (and be backward-compatible) to automatically display custom icons. | ||
resurs_method_is_enabled | Payment method based function to disable or enable a specific payment method. Injected in the class creator. Should be rewritten IF imported. | ||
woocommerce_get_sections_<id> | Custom configurable sections. | ||
resurs_admin_sort_methods_by_value | Payment sorting by value. Skip this and build a sorter that is instead is fetching payment methods as received from the API (nordic rules requires this). | ||
resurs_bank_init_enabled | Yet another disabler. Allows disabling of the initial class gateway generatator. | ||
resurs_trigger_test_callback | Testing callback filter. Allows thirdparties to join the testing in 2.x, probably not necessary but we may keep it. Generates filter with html. | ||
resurs_trigger_test_callback_timestamp | Same as | ||
resursbank_set_storeid | StoreId. Wants backwards compatibility, but with a planned integration made differently Should reside in all flows. | ||
resurs_bank_js_payment_methods | Filter that handles customer-checkout-backend eventually. I don't see the needs of it here. | ||
resurs_getaddress_enabled | Disable/Enable getAddress fields in checkout. Could be handy with backwords-compatiblity. | ||
resurs_methodlist_timediff | An emergency payment method list updater that allows us to change the final timediff. Probably not necessary. | ||
resursAdminJs | Localization that reminds me about the current installment. | ||
session handling filters | (resursbank_start_session_before/resursbank_start_session_outside_admin_only) As it seems we do not use session stuff (yet) in the current release. | ||
resurs_bank_checkout_methods_enabled | Filter the resides in the gateway parts. Code explains... Also resides in flow_omni. | ||
resursbank_custom_annuity_string | Customized annuity factors. | ||
resurs_match_getpayment_keys | Resides in refunding section. Changes how the keying is being made while running refunds. If keys are changed the refunding will be more or less sensitive depending on the keys. | ||
resurs_refund_price_override | See | ||
resurs_pte_account | Not necessary. Old failover for changing account APIs based on username. | ||
resursbank_temporary_disable_checkout | If the checkout is normally set to be enabled, this gives external plugins a chance to have it disabled. Legends says that this is currently in production use. | ||
resurs_bank_model_prefix | Model prefix. Used with the old class definitions where all methods were physically saved as files - for WPMU (Wordpress Network). | ||
woocommerce_resurs_bank_checkout_icon | Icon that seems to be malplaced as RCO is not generating local images. | ||
resursbank_location_last_checkout | Resides in checkout page. Used to track location of RCO so cart can be recalculated for remote again, if customers are jumping around in multiple browser tabs. Could be very effective. Used from v3core (the small release that crashed). | ||
resurs_hook_<type> | Resides in an isolation that is probably used to fetch callbacks and allow more actions for them in background. |