PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins
/
comments-ratings
/
core
<?php return array ( 'cleanup' => array ( 'switch' => array('switch_not_available'), ), 'checks' => array ( 'counter' => array('is_numeric', 'not_empty'), ), 'processor' => array ( // callback signature: (array $input, PixReviewsProcessor $processor) 'preupdate' => array ( // callbacks to run before update process // cleanup and validation has been performed on data ), 'postupdate' => array ( // callbacks to run post update ), ), 'errors' => array ( 'is_numeric' => esc_html__('Numeric value required.', 'comments-ratings'), 'not_empty' => esc_html__('Field is required.', 'comments-ratings'), ), 'callbacks' => array ( // cleanup callbacks 'switch_not_available' => 'pixreviews_cleanup_switch_not_available', // validation callbacks 'is_numeric' => 'pixreviews_validate_is_numeric', 'not_empty' => 'pixreviews_validate_not_empty' ) ); # config
[+]
..
[+]
classes
[+]
views
[-] core.php
[edit]
[-] README.md
[edit]
[+]
interfaces
[-] bootstrap.php
[edit]
[+]
callbacks
[+]
tests
[-] defaults.php
[edit]