PHP code example of dd / evolutioncms-snippets-ddgetdocumentfield
1. Go to this page and download the library: Download dd/evolutioncms-snippets-ddgetdocumentfield 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/ */
dd / evolutioncms-snippets-ddgetdocumentfield example snippets
//Include (MODX)EvolutionCMS.libraries.ddInstaller
nstaller/d
\DDInstaller::install([
'url' => 'https://github.com/DivanDesign/EvolutionCMS.snippets.ddGetDocumentField',
'type' => 'snippet'
]);
\DDTools\Snippet::runSnippet([
'name' => 'ddGetDocumentField',
'params' => [
//Can be set as a native PHP array
'dataProviderParams' => [
'resourceId' => 42,
'resourceFields' => 'pagetitle,question',
],
],
]);
\DDTools\Snippet::runSnippet([
'name' => 'ddGetDocumentField',
'params' => [
'dataProviderParams' => [
'resourceId' => 42,
'resourceFields' => 'pagetitle,question',
],
'outputter' => 'object',
'outputterParams' => [
'format' => 'objectArray',
],
],
]);
array(
'pagetitle' => 'The title of a document',
'question' => 'What is the meaning of life?',
)