1 | <?php |
||
13 | class Carbon_Breadcrumb_Locator_User extends Carbon_Breadcrumb_Locator { |
||
14 | |||
15 | /** |
||
16 | * Whether this the items of this locator should be included in the trail. |
||
17 | * |
||
18 | * @access public |
||
19 | * |
||
20 | * @return bool $is_included Whether the found items should be included. |
||
21 | */ |
||
22 | public function is_included() { |
||
25 | |||
26 | /** |
||
27 | * Retrieve the items, found by this locator. |
||
28 | * |
||
29 | * @access public |
||
30 | * |
||
31 | * @param int $priority The priority of the located items. |
||
32 | * @param int $user_id The author user ID. |
||
33 | * @return array $items The items, found by this locator. |
||
34 | */ |
||
35 | public function get_items( $priority = 1000, $user_id = 0 ) { |
||
48 | |||
49 | /** |
||
50 | * Generate a set of breadcrumb items that found by this locator type and any subtype. |
||
51 | * The author archive locator has no subtypes, so this method wraps around get_items(). |
||
52 | * |
||
53 | * @access public |
||
54 | * |
||
55 | * @return array $items The items, generated by this locator. |
||
56 | */ |
||
57 | public function generate_items() { |
||
64 | |||
65 | } |
||
66 |