1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-17 12:10:45 +02:00
This commit is contained in:
Ryan Cramer
2018-03-14 11:50:50 -04:00
parent bbfb4d78d2
commit d9b30167c7
7 changed files with 6 additions and 9 deletions

View File

@@ -69,9 +69,6 @@ learning module development:
There is a module development forum located at: There is a module development forum located at:
https://processwire.com/talk/forum/19-moduleplugin-development/ https://processwire.com/talk/forum/19-moduleplugin-development/
For a tutorial on how to create modules, see:
http://wiki.processwire.com/index.php/Module_Creation
Additional resources Additional resources
-------------------- --------------------

View File

@@ -95,7 +95,7 @@ abstract class AdminTheme extends WireData implements Module {
} }
/** /**
* Initialize the admin theme systme and determine which admin theme should be used * Initialize the admin theme system and determine which admin theme should be used
* *
* All admin themes must call this init() method to register themselves. * All admin themes must call this init() method to register themselves.
* *

View File

@@ -121,7 +121,7 @@
* @property bool $moduleCompile Allow use of compiled modules? #pw-group-modules * @property bool $moduleCompile Allow use of compiled modules? #pw-group-modules
* @property array $wireMail Default WireMail module settings. #pw-group-modules * @property array $wireMail Default WireMail module settings. #pw-group-modules
* *
* @property array $substituteModules Associative array with names of substitutute modules for when requested module doesn't exist #pw-group-modules * @property array $substituteModules Associative array with names of substitute modules for when requested module doesn't exist #pw-group-modules
* @property array $logs Additional core logs to keep #pw-group-admin * @property array $logs Additional core logs to keep #pw-group-admin
* @property string $defaultAdminTheme Default admin theme: AdminThemeDefault or AdminThemeReno #pw-group-admin * @property string $defaultAdminTheme Default admin theme: AdminThemeDefault or AdminThemeReno #pw-group-admin
* @property string $fatalErrorHTML HTML used for fatal error messages in HTTP mode. #pw-group-system * @property string $fatalErrorHTML HTML used for fatal error messages in HTTP mode. #pw-group-system

View File

@@ -163,7 +163,7 @@ var pwPanels = {
.attr('href', panelURL) .attr('href', panelURL)
.on('click', pwPanels.buttonClickEvent) .on('click', pwPanels.buttonClickEvent)
.on('mouseover', pwPanels.buttonMouseoverEvent) .on('mouseover', pwPanels.buttonMouseoverEvent)
.on('mouseut', pwPanels.buttonMouseoutEvent) .on('mouseout', pwPanels.buttonMouseoutEvent)
.append($span); .append($span);
var $panel = $('<div />') var $panel = $('<div />')

File diff suppressed because one or more lines are too long

View File

@@ -85,7 +85,7 @@ class LazyCron extends WireData implements Module {
"is guaranteed to be at least the time requested, rather than exactly the " . "is guaranteed to be at least the time requested, rather than exactly the " .
"time requested. This is fine for most cases, but you can make it not lazy " . "time requested. This is fine for most cases, but you can make it not lazy " .
"by connecting this to a real CRON job. See the module file for details. ", "by connecting this to a real CRON job. See the module file for details. ",
'href' => 'http://processwire.com/talk/index.php/topic,284.0.html', 'href' => 'https://processwire.com/api/modules/lazy-cron/',
'permanent' => false, 'permanent' => false,
'singular' => true, 'singular' => true,
'autoload' => true, 'autoload' => true,

View File

@@ -47,7 +47,7 @@ class PageFrontEditConfig extends ModuleConfig {
$f->icon = 'cube'; $f->icon = 'cube';
$f->label = $this->_('Option A: front-edit editable fields'); $f->label = $this->_('Option A: front-edit editable fields');
$f->description = $this->editHelpText; $f->description = $this->editHelpText;
$f->description .= ' ' . $this->_('These text-based fields will be become editable on the front-end, directly in the page, simply by checking the boxes below.'); $f->description .= ' ' . $this->_('These text-based fields will become editable on the front-end, directly in the page, simply by checking the boxes below.');
$f->description .= ' ' . $this->_('**Be careful with this option:** If you are outputting the value of a field in more than one place on a page, you should instead use [Option B, C or D](https://processwire.com/api/modules/front-end-editing/).'); $f->description .= ' ' . $this->_('**Be careful with this option:** If you are outputting the value of a field in more than one place on a page, you should instead use [Option B, C or D](https://processwire.com/api/modules/front-end-editing/).');
$f->optionColumns = 3; $f->optionColumns = 3;
foreach($fields as $field) { foreach($fields as $field) {