Dynamics Crm Connector  v1.0
 All Data Structures Namespaces Files Functions Variables Pages
D:/wamp/www/Dynamic_symfonybundle/README.md
Go to the documentation of this file.
1 dynamicscrm-connector
2 =====================
3 
4 Symfony package for Dynamics CRM connection on NTLM
5 
6 This bundle will help to connect to Microsoft CRM 2011 in NTLM
7 Based on Curl this will allow the Usage of standard commands :
8 
9 $DynamicsCrm=new DynamicsCrm($ServAdress, $User, $Password);
10 
11 Retrieve
12 
13 $DynamicsCrm->Retrieve($Table, $Id, $Columns);
14 
15 RetrieveMultiple
16 
17 $result=$DynamicsCrm->RetrieveMultiple($table,$Where, $Columns,$Join,$Order);
18 
19 Update
20 
21 $DynamicsCrm->Update($Table, $Params, $Id);
22 
23 Create
24 
25 $DynamicsCrm->Create($Table, $Params);
26 
27 Delete
28 
29 $DynamicsCrm->Delete($Table, $Id);
30 
31 #############################################################################
32 
33 Installation
34 
35 if by any mean you dont get the bundle from packagist add to you composer.json under require\n
36 
37  "dynamicscrm/connector" : "dev-master"
38 to you composer.json
39 and then :
40 composer install
41 or
42 
43  composer update
44 enjoy the bundle
45