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


PHP Util::encryptedFiles方法代碼示例

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


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

示例1: count

    $isCreatable = \OC\Files\Filesystem::isCreatable($dir . '/');
    $fileHeader = (!isset($files) or count($files) > 0);
    $emptyContent = ($isCreatable and !$fileHeader) or $ajaxLoad;
    OCP\Util::addscript('files', 'fileactions');
    OCP\Util::addscript('files', 'files');
    OCP\Util::addscript('files', 'keyboardshortcuts');
    $tmpl = new OCP\Template('files', 'index', 'user');
    $tmpl->assign('fileList', $list->fetchPage());
    $tmpl->assign('breadcrumb', $breadcrumbNav->fetchPage());
    $tmpl->assign('dir', $dir);
    $tmpl->assign('isCreatable', $isCreatable);
    $tmpl->assign('permissions', $permissions);
    $tmpl->assign('files', $files);
    $tmpl->assign('trash', $trashEnabled);
    $tmpl->assign('trashEmpty', $trashEmpty);
    $tmpl->assign('uploadMaxFilesize', $maxUploadFilesize);
    $tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize));
    $tmpl->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true)));
    $tmpl->assign('usedSpacePercent', (int) $storageInfo['relative']);
    $tmpl->assign('isPublic', false);
    $tmpl->assign('publicUploadEnabled', $publicUploadEnabled);
    $tmpl->assign("encryptedFiles", \OCP\Util::encryptedFiles());
    $tmpl->assign("mailNotificationEnabled", \OC_Appconfig::getValue('core', 'shareapi_allow_mail_notification', 'yes'));
    $tmpl->assign("allowShareWithLink", \OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes'));
    $tmpl->assign("encryptionInitStatus", $encryptionInitStatus);
    $tmpl->assign('disableSharing', false);
    $tmpl->assign('ajaxLoad', $ajaxLoad);
    $tmpl->assign('emptyContent', $emptyContent);
    $tmpl->assign('fileHeader', $fileHeader);
    $tmpl->printPage();
}
開發者ID:omusico,項目名稱:isle-web-framework,代碼行數:31,代碼來源:index.php


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