BLUE DRAGON PHP SDK
All Classes Functions Variables Pages
a_rvp_php_sdk_security_object.class.php
1 <?php
2 /***************************************************************************************************************************/
24 defined( 'RVP_PHP_SDK_ACCESS' ) or die ( 'Cannot Execute Directly' ); // Makes sure that this file is in the correct context.
25 
26 require_once(dirname(__FILE__).'/a_rvp_php_sdk_object.class.php'); // Get our base class.
27 
28 /****************************************************************************************************************************/
33  /************************************************************************************************************************/
34  /*#################################################### PUBLIC METHODS ##################################################*/
35  /************************************************************************************************************************/
36 
37  /***********************/
41  function __construct( $in_sdk_object,
42  $in_id,
43  $in_data = NULL,
44  $in_detailed_data = false,
45  $in_plugin_path = 'baseline'
46  ) {
47  parent::__construct($in_sdk_object, $in_id, $in_data, $in_detailed_data, $in_plugin_path);
48  }
49 };
__construct( $in_sdk_object, $in_id, $in_data=NULL, $in_detailed_data=false, $in_plugin_path='baseline')