PP_Nav_Items.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | namespace ProfilePress\Core\NavigationMenuLinks; |
| 4 | |
| 5 | |
| 6 | if ( ! defined('ABSPATH')) { |
| 7 | exit; // Exit if accessed directly |
| 8 | } |
| 9 | |
| 10 | |
| 11 | class PP_Nav_Items |
| 12 | { |
| 13 | public $db_id = 0; |
| 14 | public $object = 'ppnavlog'; |
| 15 | public $object_id; |
| 16 | public $menu_item_parent = 0; |
| 17 | public $type = 'custom'; |
| 18 | public $title; |
| 19 | public $url; |
| 20 | public $target = ''; |
| 21 | public $attr_title = ''; |
| 22 | public $classes = array(); |
| 23 | public $xfn = ''; |
| 24 | } |