About the Tutorial



Download 1,5 Mb.
Pdf ko'rish
bet96/96
Sana29.01.2022
Hajmi1,5 Mb.
#416930
1   ...   88   89   90   91   92   93   94   95   96
Bog'liq
Download CakePHP Tutorial (PDF Version)

'create' 
or 
'update
' or a 
callabl
e that returns true when 
the validation rule should be applied. 
Returns 
$this 
Description 
Add a string length validation rule to a field. 
Syntax 
notBlank (string 
$field
, string|null 
$message
null , string|callable|null 
$when
null) 
Parameters 

The field you want to apply the rule to. 

The error message when the rule fails. 

Either 
'create'
or 
'update'
or a 
callable
that returns true when 
the validation rule should be applied. 
Returns 
$this 
Description 
Add a notBlank rule to a field. 


CakePHP 
93 
Validator can be created by adding the following two lines in the controller. 
use Cake\Validation\Validator; 
$validator = new Validator(); 
Validating Data 
Once we have created validator, we can use the validator object to validate data. The 
following code explains how we can validate data for login webpage. 
$validator->notEmpty('username', 'We need username.')->add('username', 
'validFormat', ['rule' => 'email','message' => 'E-mail must be valid']); 
$validator->notEmpty('password', 'We need password.'); 
$errors = $validator->errors($this->request->data()); 
Using the $validator object we have first called the 
notEmpty()
method which will ensure 
that the username must not be empty. After that we have chained the 
add()
method to 
add one more validation for proper email format.
After that we have added validation for password field with notEmpty() method which will 
confirms that password field must not be empty. 
 
Example 
Make Changes in the config/routes.php file as shown in the following program. 
config/routes.php 
use Cake\Core\Plugin; 
use Cake\Routing\RouteBuilder; 
use Cake\Routing\Router; 
Router::defaultRouteClass('DashedRoute'); 
Router::scope('/', function (RouteBuilder $routes) { 
$routes->connect('validation',['controller'=>'Valids','action'=>'index']); 
27.
 
CakePHP — Creating Validators 


CakePHP 
94 
$routes->fallbacks('DashedRoute'); 
}); 
Plugin::routes(); 
Create a 
ValidsController.php
file at 
src/Controller/ValidsController.php
. Copy the 
following code in the controller file. 
src/Controller/ValidsController.php 
namespace App\Controller; 
use App\Controller\AppController; 
use Cake\Validation\Validator; 
class ValidsController extends AppController{ 
public function index(){ 
$validator = new Validator(); 
$validator->notEmpty('username', 'We need username.')-
>add('username', 'validFormat', ['rule' => 'email','message' => 'E-mail must be 
valid']); 
$validator->notEmpty('password', 'We need password.'); 
$errors = $validator->errors($this->request->data()); 
$this->set('errors',$errors); 


?> 
Create a directory 
Valids
at 
src/Template
and under that directory create a 
View
file 
called 
index.ctp
. Copy the following code in that file. 
src/Template/Valids/index.ctp 
if($errors) 

foreach($errors as $error) 
foreach($error as $msg) 
echo ''.$msg.'
'; 


CakePHP 
95 
}else{ 
echo "No errors."; 

echo $this->Form->create("Logins",array('url'=>'/validation')); 
echo $this->Form->input('username'); 
echo $this->Form->input('password'); 
echo $this->Form->button('Submit'); 
echo $this->Form->end(); 
?> 
Execute the above example by visiting the following URL: 
http://localhost:85/CakePHP/validation
Output 
Click on the submit button without entering anything. You will receive the following output. 

Download 1,5 Mb.

Do'stlaringiz bilan baham:
1   ...   88   89   90   91   92   93   94   95   96




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish