PHP code example of webfactory / content-mapping-sourceadapter-propel
1. Go to this page and download the library: Download webfactory/content-mapping-sourceadapter-propel library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
webfactory / content-mapping-sourceadapter-propel example snippets
use Webfactory\ContentMapping\Synchronizer;
use Webfactory\ContentMapping\SourceAdapter\Propel\GenericPropelSourceAdapter;
$classNameToSynchronize = 'MyClass';
$resultSetMethod = 'doSelectRS';
$logger = ...; // optional: any PSR-3 logger
$sourceAdapter = new GenericPropelSourceAdapter($classNameToSynchronize, $resultSetMethod, $logger);
$synchronizer = new Synchronizer($sourceAdapter, $mapper, $destinationAdapter, $logger);