knoxguru / nsbundle
Access the NS PHPToolkit API inside your Symfony application
Installs: 20
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 1
Open Issues: 1
Type:symfony-bundle
Requires
- php: >=5.3.2
This package is not auto-updated.
Last update: 2025-09-13 20:01:53 UTC
README
Netsuite PHP Toolkit bundle for Symfony2 Applications. The orginal source and samples can be found here: http://www.netsuite.com/portal/developers/resources/suitetalk-sample-applications.shtml
The original work and it's license is in the src/KnoxGuru/bundle/NSBundle/NS folder.
#Installation
using composer add the line below to your require section:
"knoxguru/nsbundle": "dev-master"
then
composer.phar update
Add the bundle to your AppKernel.php file
new KnoxGuru\Bundle\NSBundle\KnoxGuruNSBundle(),
Next you will copy and paste these parameters to your app/config/config.yml and edit them appropriately:
parameters:
/*...*/
knoxguru.nsendpoint: "2013_2"
knoxguru.nshost: "https://webservices.netsuite.com"
knoxguru.nsemail: "jDoe@yourdomain.com"
knoxguru.nspassword: "mySecretPwd"
knoxguru.nsrole: "3"
knoxguru.nsaccount: "MYACCT1"
I have not tested with the 2014_1 version but from what I've seen so far I don't expect too much. I'll refocus on 2014_1 when I can.
#Usage Inside your controller simply initialize using this command
$this->container->get('knoxguru.nsservice');
After you have initialized you can use the classes anywhere by adding it to your uses:
use KnoxGuru\Bundle\NSbundle\NetSuiteService;
use KnoxGuru\Bundle\NSbundle\GetRequest;
use KnoxGuru\Bundle\NSbundle\RecordRef;
class MyController extends Controller {
public function indexAction() {
$this->container->get('knoxguru.nsservice');
$service = new NetSuiteService();
$request = new GetRequest();
$request->baseRef = new RecordRef();
$request->baseRef->internalId = "21";
$request->baseRef->type = "customer";
$getResponse = $service->get($request);
if (!$getResponse->readResponse->status->isSuccess) {
echo "GET ERROR";
} else {
$customer = $getResponse->readResponse->record;
echo "GET SUCCESS, customer:";
echo "\nCompany name: ". $customer->companyName;
echo "\nInternal Id: ". $customer->internalId;
echo "\nEmail: ". $customer->email;
}
}
}
Further reading
You can find the toolkit documentation here: http://tellsaqib.github.io/NSPHP-Doc/index.html
#License My work is MIT; however, the code in the src/KnoxGuru/Bundle/NSBundle/NS folder has its own license file attached and you should review it before using this bundle. Everything inside the NS directory is not my original work. It's a modified version of the NS PHP Toolkit to work with this bundle and Symfony.