1 | <?php |
||
13 | class Carbon_Breadcrumb_Item_Term extends Carbon_Breadcrumb_Item_DB_Object { |
||
14 | |||
15 | /** |
||
16 | * Term object. |
||
17 | * |
||
18 | * @access public |
||
19 | * @var object |
||
20 | */ |
||
21 | public $term_object; |
||
22 | |||
23 | /** |
||
24 | * Configure the title and link URL by using the specified term ID. |
||
25 | * |
||
26 | * @access public |
||
27 | * @throws Carbon_Breadcrumb_Exception When term ID or taxonomy isn't specified. |
||
28 | */ |
||
29 | public function setup() { |
||
46 | |||
47 | /** |
||
48 | * Setup the title of this item. |
||
49 | * |
||
50 | * @access public |
||
51 | */ |
||
52 | public function setup_title() { |
||
63 | |||
64 | /** |
||
65 | * Setup the link of this item. |
||
66 | * |
||
67 | * @access public |
||
68 | */ |
||
69 | public function setup_link() { |
||
73 | |||
74 | } |
||
75 |