├── vendor
├── developerforce
│ └── force.com-toolkit-for-php
│ │ ├── .gitignore
│ │ ├── test
│ │ ├── build.bat
│ │ ├── build-phing.xml
│ │ ├── report
│ │ │ ├── allclasses-frame.html
│ │ │ ├── overview-frame.html
│ │ │ ├── SalesforceTest
│ │ │ │ ├── package-frame.html
│ │ │ │ └── package-summary.html
│ │ │ ├── index.html
│ │ │ ├── stylesheet.css
│ │ │ └── overview-summary.html
│ │ ├── build.xml
│ │ ├── enterprise.php
│ │ └── partner.php
│ │ ├── unit_test
│ │ ├── Lib
│ │ │ ├── Exception
│ │ │ │ └── InvalidResponse.php
│ │ │ ├── Test
│ │ │ │ ├── Partner
│ │ │ │ │ ├── LoginTest.php
│ │ │ │ │ ├── DescribeGlobalTest.php
│ │ │ │ │ ├── DescribeLayoutTest.php
│ │ │ │ │ ├── DescribeSObjectTest.php
│ │ │ │ │ ├── GetUserInfoTest.php
│ │ │ │ │ ├── GetServerTimestampTest.php
│ │ │ │ │ ├── MetaDataDeleteTest.php
│ │ │ │ │ ├── QueryTest.php
│ │ │ │ │ ├── CallOptionsTest.php
│ │ │ │ │ ├── DescribeDataCategoryGroupsTest.php
│ │ │ │ │ ├── LocaleOptionsTest.php
│ │ │ │ │ ├── ProcessWorkItemRequestTest.php
│ │ │ │ │ ├── LogoutTest.php
│ │ │ │ │ ├── EmptyRecycleBinTest.php
│ │ │ │ │ ├── AssigmentRuleHeaderTest.php
│ │ │ │ │ ├── RetrieveTest.php
│ │ │ │ │ ├── EmailHeaderTest.php
│ │ │ │ │ ├── InvalidateSessionsTest.php
│ │ │ │ │ ├── SendEmailTest.php
│ │ │ │ │ ├── LoginScopeHeaderTest.php
│ │ │ │ │ ├── UpdateTest.php
│ │ │ │ │ ├── AllowFieldTruncationHeaderTest.php
│ │ │ │ │ ├── ConvertLeadTest.php
│ │ │ │ │ ├── QueryOptionsTest.php
│ │ │ │ │ ├── SendEmailWithAttachTest.php
│ │ │ │ │ ├── CDUTest.php
│ │ │ │ │ ├── GetDeletedTest.php
│ │ │ │ │ ├── PackageVersionHeaderTest.php
│ │ │ │ │ ├── QueryMoreTest.php
│ │ │ │ │ ├── ResetPasswordTest.php
│ │ │ │ │ ├── UpsertTest.php
│ │ │ │ │ ├── GetUpdatedTest.php
│ │ │ │ │ ├── MergeTest.php
│ │ │ │ │ ├── MetaDataCheckStatusTest.php
│ │ │ │ │ ├── MetaDataCreateTest.php
│ │ │ │ │ ├── ProcessSubmitRequestTest.php
│ │ │ │ │ └── DescribeDataCategoryGroupStructuresTest.php
│ │ │ │ ├── Enterprise
│ │ │ │ │ ├── LoginTest.php
│ │ │ │ │ ├── DescribeGlobalTest.php
│ │ │ │ │ ├── DescribeLayoutTest.php
│ │ │ │ │ ├── DescribeSObjectTest.php
│ │ │ │ │ ├── GetUserInfoTest.php
│ │ │ │ │ ├── GetServerTimestampTest.php
│ │ │ │ │ ├── QueryTest.php
│ │ │ │ │ ├── DescribeDataCategoryGroupsTest.php
│ │ │ │ │ ├── EmptyRecycleBinTest.php
│ │ │ │ │ ├── LocaleOptionsTest.php
│ │ │ │ │ ├── ProcessSubmitRequestTest.php
│ │ │ │ │ ├── LogoutTest.php
│ │ │ │ │ ├── ProcessWorkItemRequestTest.php
│ │ │ │ │ ├── InvalidateSessionsTest.php
│ │ │ │ │ ├── AggregateResultTest.php
│ │ │ │ │ ├── RetrieveTest.php
│ │ │ │ │ ├── LoginScopeHeaderTest.php
│ │ │ │ │ ├── SendEmailTest.php
│ │ │ │ │ ├── AllowFieldTruncationHeaderTest.php
│ │ │ │ │ ├── FieldsToNullTest.php
│ │ │ │ │ ├── QueryMoreTest.php
│ │ │ │ │ ├── QueryOptionsTest.php
│ │ │ │ │ ├── ConvertLeadTest.php
│ │ │ │ │ ├── GetDeletedTest.php
│ │ │ │ │ ├── PackageVersionHeaderTest.php
│ │ │ │ │ ├── CDUTest.php
│ │ │ │ │ ├── SendEmailWithAttachTest.php
│ │ │ │ │ ├── GetUpdatedTest.php
│ │ │ │ │ ├── MergeTest.php
│ │ │ │ │ ├── ResetPasswordTest.php
│ │ │ │ │ ├── UpsertTest.php
│ │ │ │ │ └── DescribeDataCategoryGroupStructuresTest.php
│ │ │ │ ├── TestFactory.php
│ │ │ │ ├── TestAbstractPartner.php
│ │ │ │ └── TestAbstractEnterprise.php
│ │ │ ├── Enum
│ │ │ │ ├── WsdlType.php
│ │ │ │ └── GenericAbstract.php
│ │ │ └── Utils
│ │ │ │ └── FileLogger.php
│ │ └── runTest.php
│ │ ├── images
│ │ ├── adn-blog.gif
│ │ └── appexchange_logo_small.gif
│ │ ├── apidocs
│ │ ├── media
│ │ │ ├── Thumbs.db
│ │ │ ├── empty.png
│ │ │ └── background.png
│ │ ├── classtrees_SalesforceTest.html
│ │ └── li_SalesforceTest.html
│ │ ├── misc
│ │ └── globalconstants.php
│ │ ├── composer.json
│ │ ├── README.md
│ │ ├── css
│ │ └── document.css
│ │ ├── soapclient
│ │ ├── ProxySettings.php
│ │ ├── SforceProcessRequest.php
│ │ └── SforceFieldTypes.php
│ │ ├── license
│ │ └── samples
│ │ └── userAuth.php
├── composer
│ ├── autoload_psr4.php
│ ├── autoload_namespaces.php
│ ├── autoload_files.php
│ └── LICENSE
├── autoload.php
├── prospress
│ └── action-scheduler
│ │ ├── classes
│ │ ├── ActionScheduler_Exception.php
│ │ ├── ActionScheduler_NullLogEntry.php
│ │ ├── ActionScheduler_FinishedAction.php
│ │ ├── ActionScheduler_Schedule.php
│ │ ├── ActionScheduler_NullSchedule.php
│ │ ├── ActionScheduler_NullAction.php
│ │ ├── ActionScheduler_ActionClaim.php
│ │ ├── ActionScheduler_CanceledAction.php
│ │ ├── ActionScheduler_wpPostStore_TaxonomyRegistrar.php
│ │ ├── ActionScheduler_InvalidActionException.php
│ │ ├── ActionScheduler_SimpleSchedule.php
│ │ ├── ActionScheduler_CronSchedule.php
│ │ ├── ActionScheduler_IntervalSchedule.php
│ │ ├── ActionScheduler_Versions.php
│ │ ├── ActionScheduler_Action.php
│ │ ├── ActionScheduler_DateTime.php
│ │ ├── ActionScheduler_wpPostStore_PostStatusRegistrar.php
│ │ ├── ActionScheduler_wpPostStore_PostTypeRegistrar.php
│ │ ├── ActionScheduler_LogEntry.php
│ │ └── ActionScheduler_FatalErrorMonitor.php
│ │ ├── composer.json
│ │ ├── lib
│ │ └── cron-expression
│ │ │ ├── CronExpression_MinutesField.php
│ │ │ ├── CronExpression_YearField.php
│ │ │ ├── LICENSE
│ │ │ ├── CronExpression_FieldInterface.php
│ │ │ ├── CronExpression_HoursField.php
│ │ │ ├── CronExpression_MonthField.php
│ │ │ └── CronExpression_FieldFactory.php
│ │ ├── deprecated
│ │ └── ActionScheduler_Abstract_QueueRunner_Deprecated.php
│ │ └── action-scheduler.php
└── pippinsplugins
│ └── wp-logging
│ └── composer.json
├── templates
└── admin
│ ├── error.php
│ ├── notice.php
│ ├── settings.php
│ ├── authorized.php
│ ├── user-profile-salesforce-delete.php
│ ├── user-profile-salesforce-change.php
│ ├── fieldmaps-delete.php
│ ├── user-profile-salesforce-map.php
│ ├── mapping-errors-delete.php
│ ├── mapping-errors-edit.php
│ └── status.php
├── docs
├── code
│ ├── images
│ │ ├── favicon.ico
│ │ ├── iviewer
│ │ │ ├── grab.cur
│ │ │ ├── hand.cur
│ │ │ ├── iviewer.zoom_in.png
│ │ │ ├── iviewer.zoom_fit.png
│ │ │ ├── iviewer.zoom_out.png
│ │ │ ├── iviewer.zoom_zero.png
│ │ │ ├── iviewer.rotate_left.png
│ │ │ └── iviewer.rotate_right.png
│ │ ├── hierarchy-item.png
│ │ ├── apple-touch-icon.png
│ │ ├── icon-class-13x13.png
│ │ ├── icon-trait-13x13.png
│ │ ├── icon-interface-13x13.png
│ │ ├── apple-touch-icon-72x72.png
│ │ └── apple-touch-icon-114x114.png
│ ├── font
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.ttf
│ │ └── fontawesome-webfont.woff
│ ├── css
│ │ ├── phpdocumentor-clean-icons
│ │ │ ├── fonts
│ │ │ │ ├── phpdocumentor-clean-icons.eot
│ │ │ │ ├── phpdocumentor-clean-icons.ttf
│ │ │ │ └── phpdocumentor-clean-icons.woff
│ │ │ ├── Read Me.txt
│ │ │ ├── lte-ie7.js
│ │ │ └── style.css
│ │ └── jquery.iviewer.css
│ ├── .htaccess
│ ├── js
│ │ └── jquery.smooth-scroll.js
│ └── files
│ │ └── classes
│ │ └── admin-notice.php.txt
├── assets
│ └── img
│ │ └── screenshots
│ │ ├── 05-wordpress-fieldmap.png
│ │ ├── 01-salesforce-create-app.png
│ │ ├── 02-salesforce-app-values.png
│ │ ├── 06-wordpress-log-settings.png
│ │ ├── 03-wordpress-create-fieldmap.png
│ │ ├── 04-wordpress-add-settings-tab.png
│ │ ├── 08-wordpress-log-content-type.png
│ │ └── 07-manually-map-user-to-salesforce.png
├── permissions.md
├── mapping-errors.md
├── extending-roles.md
├── accessing-salesforce-object.md
├── extending-pull.md
├── example-extending-plugins.md
├── rest-api.md
├── extending-logging.md
├── import-export.md
└── logging.md
├── .stylelintrc
├── .github
├── PULL_REQUEST_TEMPLATE.md
├── release-drafter.yml
└── ISSUE_TEMPLATE
│ ├── feature_request.md
│ ├── update-dependency.md
│ └── bug_report.md
├── .gitignore
├── phpdoc.dist.xml
├── phpunit.xml
├── tests
├── test-sample.php
└── bootstrap.php
├── .editorconfig
├── .codeclimate.yml
├── assets
└── js
│ └── src
│ └── 05-soap.js
├── phpcs.xml
├── .scrutinizer.yml
├── package.json
├── classes
└── admin-notice.php
├── composer.json
└── .travis.yml
/vendor/developerforce/force.com-toolkit-for-php/.gitignore:
--------------------------------------------------------------------------------
1 | /vendor/
2 |
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/test/build.bat:
--------------------------------------------------------------------------------
1 | phing
2 |
--------------------------------------------------------------------------------
/templates/admin/error.php:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/docs/code/images/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/docs/code/images/favicon.ico
--------------------------------------------------------------------------------
/.stylelintrc:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "stylelint-config-wordpress/scss",
3 | "rules": {
4 | "selector-class-pattern": null
5 | }
6 | }
--------------------------------------------------------------------------------
/docs/code/font/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/docs/code/font/FontAwesome.otf
--------------------------------------------------------------------------------
/docs/code/images/iviewer/grab.cur:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/docs/code/images/iviewer/grab.cur
--------------------------------------------------------------------------------
/docs/code/images/iviewer/hand.cur:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/docs/code/images/iviewer/hand.cur
--------------------------------------------------------------------------------
/docs/code/images/hierarchy-item.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/docs/code/images/hierarchy-item.png
--------------------------------------------------------------------------------
/docs/code/font/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/docs/code/font/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/docs/code/font/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/docs/code/font/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/docs/code/font/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/docs/code/font/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/docs/code/images/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/docs/code/images/apple-touch-icon.png
--------------------------------------------------------------------------------
/docs/code/images/icon-class-13x13.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/docs/code/images/icon-class-13x13.png
--------------------------------------------------------------------------------
/docs/code/images/icon-trait-13x13.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/docs/code/images/icon-trait-13x13.png
--------------------------------------------------------------------------------
/docs/code/images/icon-interface-13x13.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/docs/code/images/icon-interface-13x13.png
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/unit_test/Lib/Exception/InvalidResponse.php:
--------------------------------------------------------------------------------
1 | ">
2 |
3 |
4 |
--------------------------------------------------------------------------------
/docs/assets/img/screenshots/01-salesforce-create-app.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/docs/assets/img/screenshots/01-salesforce-create-app.png
--------------------------------------------------------------------------------
/docs/assets/img/screenshots/02-salesforce-app-values.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/docs/assets/img/screenshots/02-salesforce-app-values.png
--------------------------------------------------------------------------------
/docs/assets/img/screenshots/06-wordpress-log-settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/docs/assets/img/screenshots/06-wordpress-log-settings.png
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .sass-cache
2 | phpdoc-cache-*
3 | /node_modules/
4 | /vendor/**/.git/
5 | /vendor/**/.github/
6 | /vendor/**/test/
7 | /vendor/**/unit_test/
8 | # generated
9 | release/
10 |
--------------------------------------------------------------------------------
/docs/assets/img/screenshots/03-wordpress-create-fieldmap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/docs/assets/img/screenshots/03-wordpress-create-fieldmap.png
--------------------------------------------------------------------------------
/docs/assets/img/screenshots/04-wordpress-add-settings-tab.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/docs/assets/img/screenshots/04-wordpress-add-settings-tab.png
--------------------------------------------------------------------------------
/docs/assets/img/screenshots/08-wordpress-log-content-type.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/docs/assets/img/screenshots/08-wordpress-log-content-type.png
--------------------------------------------------------------------------------
/docs/assets/img/screenshots/07-manually-map-user-to-salesforce.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/docs/assets/img/screenshots/07-manually-map-user-to-salesforce.png
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/images/adn-blog.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/vendor/developerforce/force.com-toolkit-for-php/images/adn-blog.gif
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/apidocs/media/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/vendor/developerforce/force.com-toolkit-for-php/apidocs/media/Thumbs.db
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/apidocs/media/empty.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/afgarcia86/object-sync-for-salesforce/master/vendor/developerforce/force.com-toolkit-for-php/apidocs/media/empty.png
--------------------------------------------------------------------------------
/vendor/composer/autoload_psr4.php:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/test/build-phing.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/docs/code/.htaccess:
--------------------------------------------------------------------------------
1 | # Fixes a vulnerability in CentOS: http://stackoverflow.com/questions/20533279/prevent-php-from-parsing-non-php-files-such-as-somefile-php-txt
2 |
3 | RemoveHandler .php
4 | ForceType text/plain
5 |
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/misc/globalconstants.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/composer/autoload_files.php:
--------------------------------------------------------------------------------
1 | $vendorDir . '/prospress/action-scheduler/action-scheduler.php',
10 | );
11 |
--------------------------------------------------------------------------------
/vendor/prospress/action-scheduler/classes/ActionScheduler_Exception.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | docs/code
5 |
6 |
7 | docs/code
8 |
9 |
10 | object-sync-for-salesforce.php
11 | ./classes
12 |
13 |
14 |
--------------------------------------------------------------------------------
/vendor/prospress/action-scheduler/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "prospress/action-scheduler",
3 | "description": "Action Scheduler for WordPress and WooCommerce",
4 | "type": "wordpress-plugin",
5 | "license": "GPL-3.0",
6 | "minimum-stability": "dev",
7 | "require": {},
8 | "require-dev": {
9 | "wp-cli/wp-cli": "1.5.1"
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/unit_test/Lib/Test/Partner/LoginTest.php:
--------------------------------------------------------------------------------
1 | _mylogin);
13 | }
14 | }
--------------------------------------------------------------------------------
/vendor/prospress/action-scheduler/classes/ActionScheduler_FinishedAction.php:
--------------------------------------------------------------------------------
1 | _mylogin);
13 | }
14 | }
--------------------------------------------------------------------------------
/docs/code/css/phpdocumentor-clean-icons/Read Me.txt:
--------------------------------------------------------------------------------
1 | To modify your generated font, use the *dev.svg* file, located in the *fonts* folder in this package. You can import this dev.svg file to the IcoMoon app. All the tags (class names) and the Unicode points of your glyphs are saved in this file.
2 |
3 | See the documentation for more info on how to use this package: http://icomoon.io/#docs/font-face
--------------------------------------------------------------------------------
/phpunit.xml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
11 | ./tests/
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/templates/admin/authorized.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/unit_test/Lib/Test/Partner/DescribeGlobalTest.php:
--------------------------------------------------------------------------------
1 | _mySforceConnection->describeGlobal());
12 | }
13 | }
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/unit_test/Lib/Test/Partner/DescribeLayoutTest.php:
--------------------------------------------------------------------------------
1 | _mySforceConnection->describeLayout('Task'));
12 | }
13 | }
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/unit_test/Lib/Test/Enterprise/DescribeGlobalTest.php:
--------------------------------------------------------------------------------
1 | _mySforceConnection->describeGlobal());
12 | }
13 | }
--------------------------------------------------------------------------------
/tests/test-sample.php:
--------------------------------------------------------------------------------
1 | assertTrue( true );
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/unit_test/Lib/Test/Enterprise/DescribeLayoutTest.php:
--------------------------------------------------------------------------------
1 | _mySforceConnection->describeLayout('Task'));
12 | }
13 | }
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/unit_test/Lib/Test/Partner/DescribeSObjectTest.php:
--------------------------------------------------------------------------------
1 | _mySforceConnection->describeSObject('Contact'));
12 | }
13 | }
--------------------------------------------------------------------------------
/vendor/prospress/action-scheduler/classes/ActionScheduler_Schedule.php:
--------------------------------------------------------------------------------
1 | _mySforceConnection->describeSObject('Task'));
12 | }
13 | }
--------------------------------------------------------------------------------
/.github/release-drafter.yml:
--------------------------------------------------------------------------------
1 | name-template: Version $NEXT_PATCH_VERSION 🌈
2 | tag-template: v$NEXT_PATCH_VERSION
3 | categories:
4 | - title: 🚀 Features
5 | label: feature
6 | - title: 🐛 Bug Fixes
7 | label: bug fix
8 | - title: 🧰 Maintenance
9 | label: chore
10 | - title: 💻 For Developers
11 | label: for developers
12 | change-template: '- $TITLE (#$NUMBER)'
13 | template: |
14 | $CHANGES
--------------------------------------------------------------------------------
/vendor/prospress/action-scheduler/classes/ActionScheduler_NullSchedule.php:
--------------------------------------------------------------------------------
1 | _mySforceConnection->getUserInfo();
12 | echo "***** Get User Info*****\n";
13 | print_r($response);
14 | }
15 | }
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/unit_test/Lib/Test/Enterprise/GetUserInfoTest.php:
--------------------------------------------------------------------------------
1 | _mySforceConnection->getUserInfo();
13 | print_r($response);
14 | }
15 | }
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "developerforce/force.com-toolkit-for-php",
3 | "description": "A wrapper for the Force.com Web Services SOAP API",
4 | "license": "BSD-3-Clause",
5 | "autoload": {
6 | "classmap": [
7 | "soapclient"
8 | ]
9 | },
10 | "extra": {
11 | "branch-alias": {
12 | "dev-master": "1.0.x-dev"
13 | }
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/unit_test/Lib/Enum/WsdlType.php:
--------------------------------------------------------------------------------
1 | Lib_Enum_WsdlType::PARTNER,
19 | '2' => Lib_Enum_WsdlType::ENTERPRISE);
20 | }
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/unit_test/Lib/Test/Partner/GetServerTimestampTest.php:
--------------------------------------------------------------------------------
1 | _mySforceConnection->getServerTimestamp();
13 | print_r($response);
14 | }
15 | }
--------------------------------------------------------------------------------
/vendor/prospress/action-scheduler/classes/ActionScheduler_NullAction.php:
--------------------------------------------------------------------------------
1 | set_schedule( new ActionScheduler_NullSchedule() );
10 | }
11 |
12 | public function execute() {
13 | // don't execute
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/vendor/pippinsplugins/wp-logging/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "pippinsplugins/wp-logging",
3 | "type": "library",
4 | "authors": [{
5 | "name": "Pippin Williamson"
6 | }],
7 | "description": "A WordPress class that provides a general logging system.",
8 | "homepage": "https://github.com/pippinsplugins/WP-Logging",
9 | "license": "GPL-2.0+",
10 | "keywords": ["wordpress", "logging", "logger", "log"],
11 | "require" : {
12 | "php" : ">=5.2.0"
13 | }
14 | }
15 |
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/unit_test/Lib/Test/Enterprise/GetServerTimestampTest.php:
--------------------------------------------------------------------------------
1 | _mySforceConnection->getServerTimestamp();
13 | print_r($response);
14 | }
15 | }
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/README.md:
--------------------------------------------------------------------------------
1 | Force.com Toolkit for PHP
2 | =========================
3 |
4 | The Force.com PHP Toolkit provides an easy-to-use wrapper for the Force.com Web Services SOAP API, presenting SOAP client implementations for both the enterprise and partner WSDLs.
5 |
6 | See the [getting started guide](https://developer.salesforce.com/page/PHP_Toolkit_13.0_Getting_Started) for sample code to create, retrieve, update and delete records in the Force.com database.
7 |
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/test/report/allclasses-frame.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | All Unit Test Classes
5 |
6 |
7 |
8 | Classes
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/.editorconfig:
--------------------------------------------------------------------------------
1 | # This file is for unifying the coding style for different editors and IDEs
2 | # editorconfig.org
3 |
4 | # WordPress Coding Standards
5 | # https://make.wordpress.org/core/handbook/coding-standards/
6 |
7 | root = true
8 |
9 | [*]
10 | charset = utf-8
11 | end_of_line = lf
12 | insert_final_newline = true
13 | trim_trailing_whitespace = true
14 | indent_style = tab
15 |
16 | [{.jshintrc,*.json,*.yml}]
17 | indent_style = space
18 | indent_size = 2
19 |
20 | [{*.txt,wp-config-sample.php}]
21 | end_of_line = crlf
22 |
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/unit_test/Lib/Test/Enterprise/QueryTest.php:
--------------------------------------------------------------------------------
1 | _mySforceConnection->query($query);
13 |
14 | foreach ($response->records as $record) {
15 | print_r($record);
16 | print " ";
17 | }
18 | }
19 | }
--------------------------------------------------------------------------------
/vendor/prospress/action-scheduler/classes/ActionScheduler_ActionClaim.php:
--------------------------------------------------------------------------------
1 | id = $id;
12 | $this->action_ids = $action_ids;
13 | }
14 |
15 | public function get_id() {
16 | return $this->id;
17 | }
18 |
19 | public function get_actions() {
20 | return $this->action_ids;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/.codeclimate.yml:
--------------------------------------------------------------------------------
1 | engines:
2 | phpcodesniffer:
3 | enabled: true
4 | config:
5 | file_extensions: "php"
6 | standard: "WordPress-Core"
7 | csslint:
8 | enabled: true
9 | eslint:
10 | enabled: true
11 | ratings:
12 | paths:
13 | - classes/**
14 | - templates/**
15 | - "**.php"
16 | - "**.css"
17 | - "**.js"
18 | exclude_paths:
19 | - docs/**/*
20 | - node_modules/**/*
21 | - tests/**/*
22 | - vendor/**/*
23 | - assets/css/vendor/*
24 | - assets/js/vendor/*
25 | - "**.min.css"
26 | - "**.min.js"
27 | - "Gulpfile.js"
28 |
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/test/report/overview-frame.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | All Unit Test Packages
5 |
6 |
7 |
8 |
9 | Packages
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/unit_test/Lib/Test/Partner/MetaDataDeleteTest.php:
--------------------------------------------------------------------------------
1 | _getMetaDataWSDL(), $this->_mylogin, $this->_mySforceConnection);
12 |
13 | $customObject = new SforceCustomObject();
14 | $customObject->fullName = 'MyCustomObjFromPHP__c';
15 |
16 | print_r($myMetadataConnection->delete($customObject));
17 | }
18 | }
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/feature_request.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Feature request
3 | about: Suggest an idea for this project
4 |
5 | ---
6 |
7 | **Is your feature request related to a problem? Please describe.**
8 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
9 |
10 | **Describe the solution you'd like**
11 | A clear and concise description of what you want to happen.
12 |
13 | **Describe alternatives you've considered**
14 | A clear and concise description of any alternative solutions or features you've considered.
15 |
16 | **Additional context**
17 | Add any other context or screenshots about the feature request here.
18 |
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/unit_test/Lib/Test/Partner/QueryTest.php:
--------------------------------------------------------------------------------
1 | _mySforceConnection->query($query);
15 | $queryResult = new QueryResult($response);
16 |
17 | foreach ($queryResult->records as $record) {
18 | print_r($record);
19 | }
20 | }
21 | }
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/test/report/SalesforceTest/package-frame.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Unit Test Classes: SalesforceTest
5 |
6 |
7 |
8 |
9 | Classes
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/docs/mapping-errors.md:
--------------------------------------------------------------------------------
1 | # Mapping errors
2 |
3 | If the plugin fails in the middle of creating a map between two objects, a row may be created on the Mapping Errors screen. If it is a push error, it will tell you the WordPress object ID it was trying to map. If it is a pull error, it will tell you the Salesforce ID.
4 |
5 | If you have resolved an issue, you can put in the correct ID in place of the temporary one on the corresponding row, or you can delete the entry and let the plugin try the mapping again. **You should not leave these entries.**
6 |
7 | The Mapping Errors tab has further explanation as well, when it is present. It will not appear in WordPress unless errors have occurred.
8 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/update-dependency.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Update dependency
3 | about: Update a library this plugin includes
4 |
5 | ---
6 |
7 | **Is this update related to a problem? Please describe.**
8 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
9 |
10 | **Current version the plugin includes**
11 | Ex. ActionScheduler 2.1.0
12 |
13 | **Version to be included**
14 | Ex. ActionScheduler 2.1.1
15 |
16 | **Have you tested this update? What happened?**
17 | Ex. did any plugin settings have to change, were there any errors during the process?
18 |
19 | **Additional context**
20 | Add any other context or screenshots about the update request here.
21 |
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/unit_test/Lib/Test/Partner/CallOptionsTest.php:
--------------------------------------------------------------------------------
1 | _mySforceConnection->setCallOptions($callOptionsHeader);
20 | $loginResult = $this->_mySforceConnection->login($this->_userName, $this->_password);
21 |
22 | print_r($loginResult);
23 | }
24 | }
--------------------------------------------------------------------------------
/vendor/developerforce/force.com-toolkit-for-php/unit_test/Lib/Utils/FileLogger.php:
--------------------------------------------------------------------------------
1 | _filename = $filename;
14 | $this->_hanlder = fopen($filename, $mode);
15 | $this->_withTimeStamps = $withTimeStamps;
16 | }
17 |
18 | function __destruct() {
19 | fclose($this->_hanlder);
20 | }
21 |
22 | public function write($message) {
23 | fwrite($this->_hanlder,
24 | ($this->_withTimeStamps ? date(DateTime::ATOM) . ' ' : '') . $message . "\n");
25 | }
26 | }
--------------------------------------------------------------------------------
/tests/bootstrap.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Unit Test Results.
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | Frame Alert
14 |
15 | This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client.
16 |
17 |
18 |
19 |