1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-15 11:14:12 +02:00

Add a few to-do code snippets, comments and notes for 3.0.150+ (next dev branch after master merge)

This commit is contained in:
Ryan Cramer
2019-12-31 14:22:33 -05:00
parent a0ddedc005
commit 22808c316f
5 changed files with 49 additions and 0 deletions

View File

@@ -519,7 +519,19 @@ class PagefilesManager extends Wire {
$publicPath = $path . $page->id . '/';
$securePath = $path . $securePrefix . $page->id . '/';
}
/* @todo 3.0.150:
$filesPublic = true;
if(!$page->isPublic()) {
// page not publicly viewable to all, check if files are public or not
if($config->pagefileSecure) {
$filesPublic = false;
} else if($page->template && $page->template->pagefileSecure) {
$filesPublic = false; // 3.0.150+
}
}
if($filesPublic) {
*/
if($page->isPublic() || !$config->pagefileSecure) {
// use the public path, renaming a secure path to public if it exists
if(is_dir($securePath) && !is_dir($publicPath)) {

View File

@@ -81,6 +81,7 @@
* @property int|bool $noAppendTemplateFile Disabe automatic append of $config->appendTemplateFile (if in use). #pw-group-files
* @property string $prependFile File to prepend to template file (separate from $config->prependTemplateFile). #pw-group-files
* @property string $appendFile File to append to template file (separate from $config->appendTemplateFile). #pw-group-files
* @property bool $pagefileSecure Use secure pagefiles for pages using this template? (3.0.150+) #pw-group-files
*
* Page Editor
*
@@ -263,6 +264,7 @@ class Template extends WireData implements Saveable, Exportable {
'noAppendTemplateFile' => 0, // disable automatic inclusion of $config->appendTemplateFile
'prependFile' => '', // file to prepend (relative to /site/templates/)
'appendFile' => '', // file to append (relative to /site/templates/)
'pagefileSecure' => false, // secure files connected with page? (3.0.150+)
'tabContent' => '', // label for the Content tab (if different from 'Content')
'tabChildren' => '', // label for the Children tab (if different from 'Children')
'nameLabel' => '', // label for the "name" property of the page (if something other than "Name")

View File

@@ -29,6 +29,7 @@
* @method int sendFile($filename, array $options = array(), array $headers = array())
* @method string download($fromURL, $toFile, array $options = array())
*
* @todo add proxy server support (3.0.150+)
*
*/