Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
zendframework1
library
Zend
Session
Validator
Abstract.php
Go to the documentation of this file.
1
<?php
26
#require_once 'Zend/Session/Validator/Interface.php';
27
37
abstract
class
Zend_Session_Validator_Abstract
implements
Zend_Session_Validator_Interface
38
{
39
48
protected
function
setValidData
(
$data
)
49
{
50
$validatorName = get_class($this);
51
52
$_SESSION[
'__ZF'
][
'VALID'
][$validatorName] =
$data
;
53
}
54
55
62
protected
function
getValidData
()
63
{
64
$validatorName = get_class($this);
65
if
(isset($_SESSION[
'__ZF'
][
'VALID'
][$validatorName])) {
66
return
$_SESSION[
'__ZF'
][
'VALID'
][$validatorName];
67
}
68
return
null
;
69
}
70
71
}
Zend_Session_Validator_Abstract
Definition:
Abstract.php:37
Zend_Session_Validator_Abstract\setValidData
setValidData($data)
Definition:
Abstract.php:48
$data
$data
Definition:
attribute_set_with_image_attribute.php:16
Zend_Session_Validator_Interface
Definition:
Interface.php:32
Zend_Session_Validator_Abstract\getValidData
getValidData()
Definition:
Abstract.php:62