Skip to content

Div PHP Ways 2.4.1

Latest
Compare
Choose a tag to compare
@rafageist rafageist released this 13 Dec 05:10
· 1 commit to master since this release

New feature: passing controller's properties to rules

<?php
ways::rule('is-admin-section', function($data, $args, $props){
	var_dump($props);
	return $args['section'] === 'admin';
});