芝麻web文件管理V1.00
编辑当前文件:/var/www/cognitio.in/wp-content/plugins/woocommerce/src/Admin/RemoteInboxNotifications/NoteStatusRuleProcessor.php
note_name ); if ( ! $status ) { return false; } return ComparisonOperation::compare( $status, $rule->status, $rule->operation ); } /** * Validates the rule. * * @param object $rule The rule to validate. * * @return bool Pass/fail. */ public function validate( $rule ) { if ( ! isset( $rule->note_name ) ) { return false; } if ( ! isset( $rule->status ) ) { return false; } if ( ! isset( $rule->operation ) ) { return false; } return true; } }