| | |
| | | * |
| | | * @version @package_version@ |
| | | * @author Ziba Scott |
| | | * @license GNU GPLv3+ |
| | | */ |
| | | class subscriptions_option extends rcube_plugin |
| | | { |
| | |
| | | $checkbox = new html_checkbox(array('name' => '_use_subscriptions', 'id' => $field_id, 'value' => 1)); |
| | | |
| | | $args['blocks']['main']['options']['use_subscriptions'] = array( |
| | | 'title' => html::label($field_id, Q($this->gettext('useimapsubscriptions'))), |
| | | 'title' => html::label($field_id, rcube::Q($this->gettext('useimapsubscriptions'))), |
| | | 'content' => $checkbox->show($use_subscriptions?1:0), |
| | | ); |
| | | } |