Skip to content

Instantly share code, notes, and snippets.

@joebordes
Created July 31, 2019 11:12
Show Gist options
  • Select an option

  • Save joebordes/37969a32272cb85af60fa224696484bc to your computer and use it in GitHub Desktop.

Select an option

Save joebordes/37969a32272cb85af60fa224696484bc to your computer and use it in GitHub Desktop.
Initialize webservice on module
<?php
// Turn on debugging level
$Vtiger_Utils_Log = true;
include_once 'vtlib/Vtiger/Module.php';
error_reporting(E_ALL);
ini_set('display_errors', 'on');
$usr = new Users();
$current_user = Users::getActiveAdminUser();
$moduleInstance = Vtiger_Module::getInstance('Timecontrol');
$moduleInstance->initWebservice();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment