Beispiel #1
0
 function __construct($template)
 {
     parent::__construct($template, __('Register', APP_TD));
     add_action('appthemes_after_registration', 'wp_new_user_notification', 10, 2);
 }
 function __construct($template)
 {
     parent::__construct($template, __('Register', APP_TD), array('internal_use_only' => true));
     add_action('appthemes_after_registration', 'wp_new_user_notification', 10, 2);
     add_filter('register_url', array($this, '_change_register_url'), 10, 1);
 }
Beispiel #3
0
 function __construct($template)
 {
     self::$_template = $template;
     parent::__construct($template, __('Register', APP_TD));
     add_action('appthemes_after_registration', 'wp_new_user_notification', 10, 2);
     add_filter('register_url', array($this, '_change_register_url'), 10, 1);
 }