Files
branddefense.pl/wp-content/plugins/brizy/admin/rule-interface.php
Roman Pyrih c2e100a763 first commit
2023-07-24 08:30:51 +02:00

20 lines
313 B
PHP

<?php
interface Brizy_Admin_RuleInterface {
/**
* @param $applyFor
* @param $entityType
* @param $entityValues
*
* @return mixed
*/
public function isMatching( $applyFor, $entityType, $entityValues );
/**
* @param $context
*
* @return mixed
*/
public function getRuleWeight($context);
}