Server : LiteSpeed System : Linux server321.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64 User : apotdzgr ( 7060) PHP Version : 8.0.30 Disable Function : NONE Directory : /home/apotdzgr/public_html/wp-content/plugins/mycryptocheckout/vendor/plainview/sdk/tree/ |
Upload File : |
<?php namespace plainview\sdk_mcc\tree; /** @brief Orphan node. @since 20131208 **/ class orphan { public $node; public $parent_id; /** @brief Retrieve the node's ID. @since 20131208 **/ public function get_id() { return $this->node->get_id(); } /** @brief Retrieve the node data for this orphan. @since 20131208 **/ public function get_node() { return $this->node; } /** @brief Retrieve the ID of the orphan's parent. @since 20131208 **/ public function get_parent_id() { return $this->parent_id; } /** @brief Set the node of the orphan. @since 20131208 **/ public function set_node( $new_node ) { $this->node = $new_node; return $this; } /** @brief Set the ID of this orphan's parent. @since 20131208 **/ public function set_parent_id( $new_parent_id ) { $this->parent_id = $new_parent_id; return $this; } }