PluginProbe
Listdom: AI-powered Business Directory with Classifieds Ads Listings / trunk
Listdom: AI-powered Business Directory with Classifieds Ads Listings vtrunk
6.0.0 5.9.0 5.8.1 5.8.0 5.7.0 5.6.0 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.1.1 1.2.0 1.2.1 1.3.0 1.3.1 1.4.0 1.5.0 1.6.0 1.6.1 1.6.2 1.6.3 1.7.0 1.8.0 1.9.0 All 75 releases
listdom / app / includes / capability.php

capability.php in Listdom: AI-powered Business Directory with Classifieds Ads Listings trunk, at app/includes/capability.php

10 lines 263 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 class LSD_Capability extends LSD_Base
4 {
5 public static function can(string $capability, string $second = '', ...$args): bool
6 {
7 return current_user_can($capability, ...$args) || (trim($second) && current_user_can($second, ...$args));
8 }
9 }
10