Skip to content

Commit

Permalink
issue fix regarding TagAPIHandler.php file import is not working in L…
Browse files Browse the repository at this point in the history
…inux system
  • Loading branch information
sumanthchilka committed Dec 4, 2018
1 parent 252c502 commit ed6e73d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
<?php
require_once realpath(dirname(__FILE__).'/../../crud/ZCRMTag.php');
require_once realpath(dirname(__FILE__).'/../../crud/ZCRMRecord.php');
require_once realpath(dirname(__FILE__).'/../../common/APIConstants.php');
require_once realpath(dirname(__FILE__).'/../../exception/APIExceptionHandler.php');
require_once realpath(dirname(__FILE__).'/../APIRequest.php');
require_once 'APIHandler.php';
class TagAPIHandler extends APIHandler
{
protected $module=null;
Expand Down
1 change: 1 addition & 0 deletions src/com/zoho/crm/library/crud/ZCRMRecord.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php
require_once realpath(dirname(__FILE__).'/../api/handler/EntityAPIHandler.php');
require_once realpath(dirname(__FILE__).'/../common/APIConstants.php');
require_once realpath(dirname(__FILE__).'/../api/handler/TagAPIHandler.php');
require_once 'ZCRMModuleRelation.php';

/**
Expand Down
2 changes: 1 addition & 1 deletion src/com/zoho/crm/library/crud/ZCRMTag.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php

require_once realpath(dirname(__FILE__).'/../api/handler/TagAPIHandler.php');
class ZCRMTag
{
private $id=null;
Expand Down
2 changes: 2 additions & 0 deletions src/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
require_once 'com/zoho/crm/library/api/handler/ModuleAPIHandler.php';
require_once 'com/zoho/crm/library/api/handler/RelatedListAPIHandler.php';
require_once 'com/zoho/crm/library/api/handler/OrganizationAPIHandler.php';
require_once 'com/zoho/crm/library/api/handler/TagAPIHandler.php';


//crud operation related
Expand Down Expand Up @@ -40,6 +41,7 @@
require_once 'com/zoho/crm/library/crud/ZCRMLeadConvertMappingField.php';
require_once 'com/zoho/crm/library/crud/ZCRMProfileSection.php';
require_once 'com/zoho/crm/library/crud/ZCRMProfileCategory.php';
require_once 'com/zoho/crm/library/crud/ZCRMTag.php';

require_once 'com/zoho/crm/library/exception/ZCRMException.php';

Expand Down

0 comments on commit ed6e73d

Please sign in to comment.