This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace AppBundle\Document; | |
final class EditableConstants | |
{ | |
const TITLE_WYSIWYG_CONFIG = [ | |
'placeholder' => 'Section title ...', | |
'enterMode' => 2, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Pimcore Database Upgrade Helper | |
* | |
* This source file is subject to the GNU General Public License version 3 (GPLv3) | |
* For the full copyright and license information, please view the LICENSE.md | |
* file distributed with this source code. | |
* | |
* @copyright Copyright (c) 2017 Gather Digital Ltd (https://www.gatherdigital.co.uk) | |
* @license https://www.gatherdigital.co.uk/license GNU General Public License version 3 (GPLv3) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//place me in /plugins/MyPlugin/lib/HiLifeAdminTheme/Plugin.php | |
namespace MyPlugin; | |
use Pimcore\API\Plugin as PluginLib; | |
class Plugin extends PluginLib\AbstractPlugin implements PluginLib\PluginInterface | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Website\Model\Object; | |
use Pimcore\Model\Object; | |
use Pimcore\Model\Object\AbstractObject; | |
class Concrete extends \Pimcore\Model\Object\Concrete | |
{ |