1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
namespace AutomateWoo;
if ( ! defined( 'ABSPATH' ) ) { exit; }
/** * @class Action_Memberships_Abstract * @since 2.8 */ abstract class Action_Memberships_Abstract extends Action {
/** * Method to set the action's admin props. */ public function load_admin_details() { $this->group = __( 'Membership', 'automatewoo' ); } }
|