PHP code example of fromholdio / silverstripe-embedfield
1. Go to this page and download the library: Download fromholdio/silverstripe-embedfield 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/ */
fromholdio / silverstripe-embedfield example snippets
namespace {
use SilverStripe\CMS\Model\SiteTree;
use Fromholdio\EmbedField\Model\EmbedObject;
use Fromholdio\EmbedField\Forms\EmbedField;
class Page extends SiteTree
{
private static $db = [];
private static $has_one = [
'MyVideo' => EmbedObject::class
];
public function getCMSFields() {
$fields = parent::getCMSFields();
$fields->addFieldToTab('Root.Main', EmbedField::create('MyVideoID', 'Sidebar video'));
return $fields;
}
}
}