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