mirror of
https://github.com/opnsense/plugins.git
synced 2026-06-03 22:08:11 -04:00
devel/helloworld: add dynamic hint usage
PR: https://github.com/opnsense/core/issues/10225
This commit is contained in:
parent
12e13fc716
commit
825702e60c
3 changed files with 31 additions and 27 deletions
|
|
@ -1,6 +1,6 @@
|
|||
PLUGIN_NAME= helloworld
|
||||
PLUGIN_VERSION= 1.4
|
||||
PLUGIN_REVISION= 1
|
||||
PLUGIN_REVISION= 2
|
||||
PLUGIN_COMMENT= A sample framework application
|
||||
PLUGIN_MAINTAINER= ad@opnsense.org
|
||||
|
||||
|
|
|
|||
|
|
@ -1,31 +1,29 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Copyright (C) 2015-2019 Deciso B.V.
|
||||
/*
|
||||
* Copyright (C) 2015-2019 Deciso B.V.
|
||||
* All rights reserved.
|
||||
*
|
||||
* All rights reserved.
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are met:
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are met:
|
||||
* 1. Redistributions of source code must retain the above copyright notice,
|
||||
* this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright notice,
|
||||
* this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
* AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
||||
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
||||
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
||||
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||
* AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
||||
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
namespace OPNsense\HelloWorld\Api;
|
||||
|
|
@ -40,4 +38,12 @@ class SettingsController extends ApiMutableModelControllerBase
|
|||
{
|
||||
protected static $internalModelClass = 'OPNsense\HelloWorld\HelloWorld';
|
||||
protected static $internalModelName = 'helloworld';
|
||||
|
||||
public function getAction()
|
||||
{
|
||||
$data = parent::getAction();
|
||||
$data[self::$internalModelName]['general']['%ToEmail'] = gettext('Enter recipient here');
|
||||
|
||||
return $data;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,8 +1,6 @@
|
|||
<model>
|
||||
<mount>//OPNsense/helloworld</mount>
|
||||
<description>
|
||||
the OPNsense "Hello World" application
|
||||
</description>
|
||||
<description>OPNsense "Hello World" application</description>
|
||||
<items>
|
||||
<!-- container -->
|
||||
<general>
|
||||
|
|
@ -20,7 +18,7 @@
|
|||
</FromEmail>
|
||||
<ToEmail type="EmailField">
|
||||
<Required>Y</Required>
|
||||
<ValidationMessage>please specify a valid email address</ValidationMessage>
|
||||
<ValidationMessage>Please specify a valid email address.</ValidationMessage>
|
||||
</ToEmail>
|
||||
<Description type="TextField">
|
||||
<Required>Y</Required>
|
||||
|
|
|
|||
Loading…
Reference in a new issue