File "InstallWordPress.php"
Full Path: /home2/sdektunc/cepali.edu.mx/wp-content/plugins/smart-slider-3/Nextend/SmartSlider3/Install/WordPress/InstallWordPress.php
File size: 453 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Nextend\SmartSlider3\Install\WordPress;
class InstallWordPress {
public static function install() {
$role = get_role('administrator');
if (is_object($role)) {
$role->add_cap('smartslider');
$role->add_cap('smartslider_config');
$role->add_cap('smartslider_edit');
$role->add_cap('smartslider_delete');
}
wp_get_current_user()->for_site();
}
}