PHP code example of dd / evolutioncms-plugins-managermanager-mm_ddmultiplefields
1. Go to this page and download the library: Download dd/evolutioncms-plugins-managermanager-mm_ddmultiplefields 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-plugins-managermanager-mm_ddmultiplefields example snippets
mm_ddMultipleFields([
'fields' => 'someImages',
'columns' => [
//Only one column
[
'type' => 'image'
]
]
]);
mm_ddMultipleFields([
'fields' => 'someImage',
'columns' => [
[
'type' => 'image',
'title' => 'Photo'
],
[
'type' => 'text',
'title' => 'Title'
]
]
]);
mm_ddMultipleFields([
'fields' => 'photos',
'columns' => [
[
'type' => 'image',
'title' => 'Photo',
'alias' => 'src'
],
[
'type' => 'text',
'title' => 'Title'
'alias' => 'alt'
],
//In the same time we can use columns without aliases, numeric index will be used in this case
[
'type' => 'textarea'
'title' => 'Notes'
]
]
]);
mm_ddMultipleFields([
'fields' => 'employees',
'columns' => [
[
'type' => 'text',
'title' => 'Name',
'width' => 250
],
[
'type' => 'text',
'title' => 'Phone'
'width' => 100
],
[
'type' => 'text',
'title' => 'Job title'
'width' => 200
]
],
//Minimum 2 employee is
mm_ddMultipleFields([
'fields' => 'employees',
'columns' => [
[
'type' => 'text',
'title' => 'Name',
'width' => 250
],
[
'type' => 'text',
'title' => 'Phone'
'width' => 100
],
[
'type' => 'select',
'title' => 'Job title'
'data' => '[
{
"value": "Founder"
},
{
"value": "SEO"
},
{
"value": "Designer"
},
{
"value": "Product manager"
},
{
"value": "Developer"
}
]'
]
]
]);