Aleksander Machniak
2015-06-07 a9587489473baf3854999e711083be212ca0c1c4
program/steps/settings/func.inc
@@ -1,6 +1,6 @@
<?php
/*
/**
 +-----------------------------------------------------------------------+
 | program/steps/settings/func.inc                                       |
 |                                                                       |
@@ -845,6 +845,20 @@
                );
            }
            if (!isset($no_override['sig_below'])) {
                if (!$current) {
                    continue 2;
                }
                $field_id = 'rcmfd_sig_below';
                $input    = new html_checkbox(array('name' => '_sig_below', 'id' => $field_id, 'value' => 1));
                $blocks['sig']['options']['sig_below'] = array(
                    'title'   => html::label($field_id, rcube::Q($RCMAIL->gettext('sigbelow'))),
                    'content' => $input->show($RCMAIL->config->get('sig_below') ? 1 : 0),
                );
            }
            if (!isset($no_override['strip_existing_sig'])) {
                if (!$current) {
                    continue 2;
@@ -1261,13 +1275,14 @@
            unset($sections[$idx]);
        else
            $sections[$idx]['blocks'] = $data['blocks'];
    }
    $data = $RCMAIL->plugins->exec_hook('preferences_section_header',
        array('section' => $sect['id'], 'header' => '', 'current' => $current));
        // allow plugins to add a header to each section
        $data = $RCMAIL->plugins->exec_hook('preferences_section_header',
                                            array('section' => $sect['id'], 'header' => '', 'current' => $current));
    if(!empty($data['header'])) {
        $sections[$idx]['header'] = $data['header'];
        if(!empty($data['header'])) {
            $sections[$idx]['header'] = $data['header'];
        }
    }
    return array($sections, $plugin['cols']);