22 lines
389 B
PHP
22 lines
389 B
PHP
<?php
|
|
|
|
namespace WPML\TranslationRoles;
|
|
|
|
use WPML\Collect\Support\Collection;
|
|
|
|
class RemoveManager extends Remove {
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function run( Collection $data ) {
|
|
$result = parent::run( $data );
|
|
do_action( 'wpml_tm_ate_synchronize_managers' );
|
|
return $result;
|
|
}
|
|
|
|
protected static function getCap() {
|
|
return \WPML_Manage_Translations_Role::CAPABILITY;
|
|
}
|
|
}
|