dump db version
[openemr.git] / library / expand_contract_inc.php
blob1eaa71ddf5f2208aaae772051c85bc5f783188cf
1 <?php
2 /**
3 * Expand Contract State
5 * @package OpenEMR
6 * @link http://www.open-emr.org
7 * @author Ranganath Pathak <pathak@scrs1.org>
8 * @copyright Copyright (c) 2018 Ranganath Pathak <pathak@scrs1.org>
9 * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
12 if ($current_state) {
13 $container = 'container-fluid';
14 $expand_title = xl('Click to Contract and set to henceforth open in Centered mode');
15 $expand_icon_class = 'fa-compress';
16 } else {
17 $container = 'container';
18 $expand_title = xl('Click to Expand and set to henceforth open in Expanded mode');
19 $expand_icon_class = 'fa-expand';