Breadcrumb->render([ [ 'title' => 'Home', 'icon' => 'fa fa-home', 'url' => '/', ], [ 'title' => __('Configurazioni'), 'icon' => 'fa fa-wrench', ], [ 'title' => __('Lista {0}', $actor->hasValue('organisation') ? __('Organizzazioni') : __('Utenti')), 'icon' => 'fa fa-list', 'url' => ['controller' => $actor->hasValue('organisation') ? 'organisations' : 'users', 'action' => 'index'], ], [ 'title' => __('Dettaglio {0}', $actor->hasValue('organisation') ? __('Organizzazione') : __('Utente')), 'icon' => 'fa fa-info', 'url' => ['controller' => $actor->hasValue('organisation') ? 'organisations' : 'users', 'action' => 'view', $actor->organisation->id ?? $actor->user->id], ], [ 'title' => __('Gestione recapiti'), 'icon' => 'fa fa-phone', ], ]); ?>
| = __('Descrizione') ?> | = __('Cellulare') ?> | = __('Ricevi notifiche a questo recapito') ?> | = __('Azioni') ?> |
|---|---|---|---|
| = h($mobile_phone->mobile_phone_description->description) ?> | = h($mobile_phone->value) ?> | = $mobile_phone->enable_notifications ? __('SI') : __('NO') ?> | = $can_edit_mobile_phone ? $this->Html->link(__('Modifica'), ['controller' => 'MobilePhones', 'action' => 'edit', $mobile_phone->id], ['class'=>'btn btn-warning btn-xs']) : null ?> = $can_delete_mobile_phone ? $this->Form->postLink(__('Cancella'), ['action' => 'delete', $mobile_phone->delivery_id], ['confirm' => __('Sei sicuro che vuoi cancellare il Cellulare "{0}" ?', $mobile_phone->value), 'class'=>'btn btn-danger btn-xs']) : null ?> |
| = __('Descrizione') ?> | = __('Fax') ?> | = __('Ricevi notifiche a questo recapito') ?> | = __('Azioni') ?> |
|---|---|---|---|
| = h($fax->fax_description->description) ?> | = h($fax->value) ?> | = $fax->enable_notifications ? __('SI') : __('NO') ?> | = $can_edit_fax ? $this->Html->link(__('Modifica'), ['controller' => 'Faxes', 'action' => 'edit', $fax->id], ['class'=>'btn btn-warning btn-xs']) : null ?> = $can_delete_fax ? $this->Form->postLink(__('Cancella'), ['action' => 'delete', $fax->delivery_id], ['confirm' => __('Sei sicuro che vuoi cancellare il Fax "{0}" ?', $fax->value), 'class'=>'btn btn-danger btn-xs']) : null ?> |
| = __('Descrizione') ?> | = __('Email') ?> | = __('Ricevi notifiche a questo recapito') ?> | = __('Azioni') ?> |
|---|---|---|---|
| = h($email->email_description->description) ?> | = h($email->value) ?> | = $email->enable_notifications ? __('SI') : __('NO') ?> | = $can_edit_email ? $this->Html->link(__('Modifica'), ['controller' => 'Emails', 'action' => 'edit', $email->id], ['class'=>'btn btn-warning btn-xs']) : null ?> = $can_delete_email ? $this->Form->postLink(__('Cancella'), ['action' => 'delete', $email->delivery_id], ['confirm' => __('Sei sicuro che vuoi cancellare l\'Email "{0}" ?', $email->value), 'class'=>'btn btn-danger btn-xs']) : null ?> |
| = __('Descrizione') ?> | = __('Telefono') ?> | = __('Azioni') ?> |
|---|---|---|
| = h($phone->phone_description->description) ?> | = h($phone->value) ?> | = $can_edit_phone ? $this->Html->link(__('Modifica'), ['controller' => 'Phones', 'action' => 'edit', $phone->id], ['class'=>'btn btn-warning btn-xs']) : null ?> = $can_delete_phone ? $this->Form->postLink(__('Cancella'), ['action' => 'delete', $phone->delivery_id], ['confirm' => __('Sei sicuro che vuoi cancellare il Telefono "{0}" ?', $phone->value), 'class'=>'btn btn-danger btn-xs']) : null ?> |
| = __('ID') ?> | = __('Ricevi notifiche a questo recapito') ?> | = __('Azioni') ?> |
|---|---|---|
| = h($telegram_chat->value) ?> | = $telegram_chat->enable_notifications ? __('SI') : __('NO') ?> | = $can_edit_telegram_chat ? $this->Html->link(__('Modifica'), ['controller' => 'TelegramChats', 'action' => 'edit', $telegram_chat->id], ['class'=>'btn btn-warning btn-xs']) : null ?> = $can_delete_telegram_chat ? $this->Form->postLink(__('Cancella'), ['action' => 'delete', $telegram_chat->delivery_id], ['confirm' => __('Sei sicuro che vuoi cancellare la Chat Telegram con ID "{0}" ?', $telegram_chat->value), 'class'=>'btn btn-danger btn-xs']) : null ?> |
| = __('Descrizione') ?> | = __('PEC') ?> | = __('Ricevi notifiche a questo recapito') ?> | = __('Azioni') ?> |
|---|---|---|---|
| = h($pec->pec_description->description) ?> | = h($pec->value) ?> | = $pec->enable_notifications ? __('SI') : __('NO') ?> | = $can_edit_pec ? $this->Html->link(__('Modifica'), ['controller' => 'Pecs', 'action' => 'edit', $pec->id], ['class'=>'btn btn-warning btn-xs']) : null ?> = $can_delete_pec ? $this->Form->postLink(__('Cancella'), ['action' => 'delete', $pec->delivery_id], ['confirm' => __('Sei sicuro che vuoi cancellare la PEC "{0}" ?', $pec->value), 'class'=>'btn btn-danger btn-xs']) : null ?> |