Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
55d5a5d4
Commit
55d5a5d4
authored
Jan 26, 2015
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add Phalcon validators to model
parent
d9e78ccb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
86 additions
and
8 deletions
+86
-8
BaseField.php
...nse/mvc/app/models/OPNsense/Base/FieldTypes/BaseField.php
+27
-7
EmailField.php
...se/mvc/app/models/OPNsense/Base/FieldTypes/EmailField.php
+57
-0
Sample.xml
src/opnsense/mvc/app/models/OPNsense/Sample/Sample.xml
+2
-1
No files found.
src/opnsense/mvc/app/models/OPNsense/Base/FieldTypes/BaseField.php
View file @
55d5a5d4
...
...
@@ -55,6 +55,10 @@ abstract class BaseField
*/
protected
$internalReference
=
""
;
/**
* @var string validation message string
*/
protected
$internalValidationMessage
=
null
;
/**
* @return bool returns if this a container type object (no data)
...
...
@@ -120,6 +124,23 @@ abstract class BaseField
return
$this
->
internalValue
;
}
/**
* default setter
* @param $value set field value
*/
public
function
setValue
(
$value
)
{
$this
->
internalValue
=
$value
;
}
/**
* @return array child items
*/
public
function
getChildren
()
{
return
$this
->
internalChildnodes
;
}
/**
* set Default field value
* @param $value default value
...
...
@@ -130,20 +151,19 @@ abstract class BaseField
}
/**
* default setter
* @param $value set field value
* @param $msg validation message (on failure)
*/
public
function
setVal
ue
(
$value
)
public
function
setVal
idationMessage
(
$msg
)
{
$this
->
internalVal
ue
=
$value
;
$this
->
internalVal
idationMessage
=
$msg
;
}
/**
* @return array
child items
* @return array
returns validators for this field type (empty if none)
*/
public
function
get
Children
()
public
function
get
Validators
()
{
return
$this
->
internalChildnodes
;
return
array
()
;
}
}
\ No newline at end of file
src/opnsense/mvc/app/models/OPNsense/Base/FieldTypes/EmailField.php
0 → 100644
View file @
55d5a5d4
<?php
/*
# Copyright (C) 2015 Deciso B.V.
#
# All rights reserved.
#
# 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.
#
# 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.
--------------------------------------------------------------------------------------
package : Frontend Model Base
function: Email field type
*/
namespace
OPNsense\Base\FieldTypes
;
use
Phalcon\Validation\Validator\Email
;
class
EmailField
extends
BaseField
{
/**
* @var bool marks if this is a data node or a container
*/
protected
$internalIsContainer
=
false
;
/**
* @return array returns Email validator
*/
public
function
getValidators
()
{
if
(
$this
->
internalValidationMessage
==
null
)
{
$msg
=
"email address invalid for "
.
$this
->
internalReference
;
}
else
{
$msg
=
$this
->
internalValidationMessage
;
}
return
array
(
new
Email
(
array
(
'message'
=>
$msg
)));
}
}
\ No newline at end of file
src/opnsense/mvc/app/models/OPNsense/Sample/Sample.xml
View file @
55d5a5d4
...
...
@@ -8,8 +8,9 @@
<Mask>
[A-Z]
</Mask>
</tag1>
<tagX>
<tag1
type=
"
Text
Field"
>
<tag1
type=
"
Email
Field"
>
<Default>
test1234
</Default>
<ValidationMessage>
you should input this!
</ValidationMessage>
</tag1>
<tag2>
<tagZ></tagZ>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment