Changeset 908972
- Timestamp:
- 05/06/2014 01:55:39 PM (12 years ago)
- Location:
- leyka/trunk
- Files:
-
- 1 deleted
- 7 edited
-
README.txt (modified) (2 diffs)
-
gateways/chronopay/leyka-class-chronopay-gateway.php (modified) (1 diff)
-
gateways/quittance/leyka-class-quittance-gateway.php (modified) (1 diff)
-
gateways/text/leyka-class-text-gateway.php (modified) (1 diff)
-
gateways/yandex/leyka-class-yandex-gateway.php (modified) (1 diff)
-
gateways/yandex_phyz/leyka-class-yandex_phyz-gateway.php (modified) (2 diffs)
-
inc/leyka-defaults.php (deleted)
-
leyka.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
leyka/trunk/README.txt
r906545 r908972 6 6 Requires at least: 3.6.1 7 7 Tested up to: 3.9 8 Stable tag: 2.1 8 Stable tag: 2.1.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 66 66 67 67 == Changelog == 68 69 = 2.1.1 = 70 * Fix: Permalink problem after activation on some installs 68 71 69 72 = 2.1 = -
leyka/trunk/gateways/chronopay/leyka-class-chronopay-gateway.php
r906545 r908972 337 337 } 338 338 339 //add_action('leyka_add_gateway', function(){340 leyka()->add_gateway(Leyka_Chronopay_Gateway::get_instance()); 341 //}, 11);339 add_action('leyka_init_actions', function(){ 340 leyka()->add_gateway(Leyka_Chronopay_Gateway::get_instance()); 341 }, 11); -
leyka/trunk/gateways/quittance/leyka-class-quittance-gateway.php
r906545 r908972 199 199 } 200 200 201 //add_action('leyka_add_gateway', function(){202 leyka()->add_gateway(Leyka_Quittance_Gateway::get_instance());203 //}, 12);201 add_action('leyka_init_actions', function(){ 202 leyka()->add_gateway(Leyka_Quittance_Gateway::get_instance()); 203 }, 35); -
leyka/trunk/gateways/text/leyka-class-text-gateway.php
r906545 r908972 163 163 } 164 164 165 leyka()->add_gateway(Leyka_Text_Gateway::get_instance()); 165 add_action('leyka_init_actions', function(){ 166 leyka()->add_gateway(Leyka_Text_Gateway::get_instance()); 167 }, 40); -
leyka/trunk/gateways/yandex/leyka-class-yandex-gateway.php
r906545 r908972 550 550 551 551 552 //add_action('leyka_add_gateway', function(){553 leyka()->add_gateway(Leyka_Yandex_Gateway::get_instance());554 //});552 add_action('leyka_init_actions', function(){ 553 leyka()->add_gateway(Leyka_Yandex_Gateway::get_instance()); 554 }, 20); -
leyka/trunk/gateways/yandex_phyz/leyka-class-yandex_phyz-gateway.php
r906545 r908972 399 399 } 400 400 401 leyka()->add_gateway(Leyka_Yandex_phyz_Gateway::get_instance());402 401 403 402 function error_log_yandex_phyz($string) { … … 406 405 # error_log($string, 3, $log_file); 407 406 } 407 408 add_action('leyka_init_actions', function(){ 409 leyka()->add_gateway(Leyka_Yandex_phyz_Gateway::get_instance()); 410 }, 25); -
leyka/trunk/leyka.php
r906545 r908972 4 4 * Plugin URI: http://leyka.te-st.ru/ 5 5 * Description: The donations management system for your WP site. 6 * Version: 2.1 6 * Version: 2.1.1 7 7 * Author: Lev Zvyagincev aka Ahaenor 8 8 * Author URI: ahaenor@gmail.com … … 92 92 93 93 // Init: 94 leyka(); 94 add_action('setup_theme', 'leyka_init', 2); 95 function leyka_init(){ 96 leyka(); 97 do_action('leyka_init_actions'); 98 } 95 99 96 100 //echo '<pre>'.print_r(leyka_get_pm_list(), TRUE).'</pre>';
Note: See TracChangeset
for help on using the changeset viewer.