當前位置: 首頁>>代碼示例>>PHP>>正文


PHP UploadField::setCanPreviewFolder方法代碼示例

本文整理匯總了PHP中UploadField::setCanPreviewFolder方法的典型用法代碼示例。如果您正苦於以下問題:PHP UploadField::setCanPreviewFolder方法的具體用法?PHP UploadField::setCanPreviewFolder怎麽用?PHP UploadField::setCanPreviewFolder使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在UploadField的用法示例。


在下文中一共展示了UploadField::setCanPreviewFolder方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getUploadForm

 public static function getUploadForm($file, $parentClass, $parentId, $parentField)
 {
     if ($file instanceof File && class_exists($parentClass) && is_subclass_of($parentClass, "DataObject")) {
         $parent = $parentClass::get()->byId($parentId);
         $fields = new FieldList($uploadField = new UploadField($parentField, 'Upload', $parent));
         $uploadField->setCanAttachExisting(false);
         // Block access to Silverstripe assets library
         $uploadField->setCanPreviewFolder(false);
         // Don't show target filesystem folder on upload field
         $uploadField->relationAutoSetting = false;
         // Prevents the form thinking the GalleryPage is the underlying object
         $uploadField->setFolderName('Address Book');
         $uploadField->setAllowedMaxFileNumber(1);
         if ($file instanceof Image) {
             $uploadField->setAllowedFileCategories('image');
         }
         $actions = new FieldList(new FormAction('submit', 'Save'));
         $from = new Form(Controller::curr(), 'feFileUploadForm', $fields, $actions, null);
         $urlParams = array('feclass' => $parentClass, 'fefield' => $parentField, 'feid' => $parentId, 'filesUpload' => true, 'fefileid' => $file->ID, 'fefileclass' => $file->ClassName);
         //   feclass: parentClass,
         //                        fefield: parentField,
         //                        feid: parentId,
         //                        feisUpload: true,
         //                        value: "{feclass: " + objClass + ",feid: " + objId + "}"
         //            echo http_build_query($urlParams) . "\n";
         $from->setFormAction('home/feFileUploadForm?' . http_build_query($urlParams));
         return $from;
     }
 }
開發者ID:helpfulrobot,項目名稱:gdmedia-silverstripe-frontend-admin,代碼行數:29,代碼來源:FrontendEditing.php

示例2: getCMSFields

 function getCMSFields()
 {
     $this->beforeUpdateCMSFields(function ($fields) {
         $datefield = new DateField('Date', 'Date (DD/MM/YYYY)*');
         $datefield->setConfig('showcalendar', true);
         $datefield->setConfig('dateformat', 'dd/MM/YYYY');
         $imagefield = new UploadField('Image', 'Image');
         $imagefield->allowedExtensions = array('jpg', 'gif', 'png');
         $imagefield->setFolderName("Managed/CalendarImages");
         $imagefield->setCanPreviewFolder(false);
         $fields->addFieldToTab('Root.Main', new TextField('Title', "Event Title*"));
         $fields->addFieldToTab('Root.Main', $datefield);
         $fields->addFieldToTab('Root.Main', new TextField('Time', "Time (HH:MM)"));
         $fields->addFieldToTab('Root.Main', new TextareaField('Description'));
         $fields->addFieldToTab('Root.Main', $imagefield);
     });
     $fields = parent::getCMSFields();
     $this->extend('updateCMSFields', $fields);
     $fields->removeFieldFromTab("Root.Main", "CalendarPageID");
     return $fields;
 }
開發者ID:helpfulrobot,項目名稱:purplespider-basic-calendar,代碼行數:21,代碼來源:CalendarEntry.php

示例3: getCMSFields

 public function getCMSFields()
 {
     $this->beforeUpdateCMSFields(function ($fields) {
         $datefield = new DateField('Date', 'Date (DD/MM/YYYY)');
         $datefield->setConfig('showcalendar', true);
         $datefield->setConfig('showdropdown', true);
         $datefield->setConfig('dateformat', 'dd/MM/YYYY');
         $fields->addFieldToTab('Root.Main', $datefield, 'Content');
         $image = new UploadField('AttachedImage', 'Main Image');
         $image->getValidator()->setAllowedExtensions(array('jpg', 'jpeg', 'png', 'gif'));
         $image->setConfig('allowedMaxFileNumber', 1);
         $image->setFolderName('Managed/NewsImages');
         $image->setCanPreviewFolder(false);
         $image->setRightTitle("Displayed to the right of the content in the main article, where it can be clicked to enlarge. <br />A thumbnail also appears next to the article summary on the main News page.");
         $fields->addFieldToTab('Root.Main', $image, "Content");
     });
     $fields = parent::getCMSFields();
     $fields->renameField("Title", "Headline");
     $fields->removeFieldFromTab("Root.Main", "MenuTitle");
     return $fields;
 }
開發者ID:helpfulrobot,項目名稱:purplespider-basic-news,代碼行數:21,代碼來源:NewsArticle.php


注:本文中的UploadField::setCanPreviewFolder方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。