Server : Apache System : Linux indy02.toastserver.com 3.10.0-962.3.2.lve1.5.85.el7.x86_64 #1 SMP Thu Apr 18 15:18:36 UTC 2024 x86_64 User : palandch ( 1163) PHP Version : 7.1.33 Disable Function : NONE Directory : /home/palandch/www/core/model/modx/ |
<?php /** * @package modx */ /** * {@inheritdoc} * * This modResource derivative represents a traditional web document that stores * it's primary content in the modX database container. * * @todo Determine if this class is unnecessary; modResource represents this * default web document and nothing unique is done in this class currently, * other than changing the default class_key. * * @package modx */ class modDocument extends modResource { /** * Overrides modResource::__construct to set the class key for this Resource type * @param xPDO $xpdo A reference to the xPDO|modX instance */ function __construct(& $xpdo) { parent :: __construct($xpdo); $this->set('class_key','modDocument'); $this->showInContextMenu = true; } /** * Use this in your extended Resource class to display the text for the context menu item, if showInContextMenu is * set to true. * @return array */ public function getContextMenuText() { return array( 'text_create' => $this->xpdo->lexicon('document'), 'text_create_here' => $this->xpdo->lexicon('document_create_here'), ); } }