Skip to content

Commit

Permalink
Criada novas opções no dictEntity Ref.: #1
Browse files Browse the repository at this point in the history
  • Loading branch information
israelmelo committed Sep 6, 2024
1 parent 66e0d7c commit c41adcc
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public function _init()
$plugin->createNotification($user->profile, $this, $spam_terms, $ip);
}

$dict_entity = $plugin->dictEntity($this);
$dict_entity = $plugin->dictEntity($this, 'artigo');
$message = i::__("{$dict_entity} {$this->name} foi enviado para moderação. Informamos que registramos seu ip: {$ip}");
$notification = new Notification;
$notification->user = $this->ownerUser;
Expand Down Expand Up @@ -289,9 +289,15 @@ public function dictEntity(Entity $entity, $type = "preposição"): string
case 'pronome':
$prefixes = (object) ["f" => "esta", "m" => "este"];
break;
default:
case 'artigo':
$prefixes = (object) ["f" => "a", "m" => "o"];
break;
case 'none':
$prefixes = (object) ["f" => "", "m" => ""];
break;
default:
$prefixes = (object) ["f" => "", "m" => ""];
break;
}

$entities = [
Expand Down Expand Up @@ -389,7 +395,7 @@ public function getSpamTerms($entity, $terms): array {
* @return string Retorna uma mensagem formatada de notificação baseada no status de salvamento.
*/
public function getNotificationMessage($entity, $is_save): string {
$dict_entity = $this->dictEntity($entity);
$dict_entity = $this->dictEntity($entity, 'artigo');
$message_save = i::__("Possível spam detectado {$dict_entity} - <strong><i>{$entity->name}</i></strong><br><br> <a href='{$entity->singleUrl}'>Clique aqui</a> para verificar. Mais detalhes foram enviados para o seu e-mail");
$message_insert = $message_insert = i::__("Possível spam detectado {$dict_entity} - <strong><i>{$entity->name}</i></strong><br><br> Apenas um administrador pode publicar este conteúdo, <a href='{$entity->singleUrl}'>clique aqui</a> para verificar. Mais detalhes foram enviados para o seu e-mail");

Expand Down

0 comments on commit c41adcc

Please sign in to comment.