Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.23 KB | None | 0 0
  1. <?
  2. global $arTheme, $arRegion;
  3. if ($arRegion)
  4.     $bPhone = ($arRegion['PHONES'] ? true : false);
  5. else
  6.     $bPhone = ((int)$arTheme['HEADER_PHONES'] ? true : false);
  7. ?>
  8. <footer id="footer">
  9.     <div class="container">
  10.         <div class="row bottom-middle">
  11.             <div class="maxwidth-theme">
  12.                 <div class="col-lg-8 col-md-10 col-sm-10 col-sm-10 col-lg-offset-2 col-md-offset-1">
  13.                     <div class="row info flexbox">
  14.                         <?
  15.                         $bEmail = CAllcorp2::checkContentBlock(SITE_DIR.'include/footer/site-email.php', 'PROPERTY_EMAIL_VALUE');
  16.                         $bAddr = CAllcorp2::checkContentBlock(SITE_DIR.'include/header/site-address.php');
  17.                         ?>
  18.                         <div class="col-lg-3 col-md-3 col-sm-5 col-xs-12 col-sm-offset-2">
  19.                             <div class="blocks phones">
  20.                                 <? CAllcorp2::ShowHeaderPhones('', 'Phone_black.svg');?>
  21.                             </div>
  22.                         </div>
  23.                         <div class="col-lg-4 col-md-4 col-sm-5 col-xs-12">
  24.                             <? CAllcorp2::showEmail('email blocks');?>
  25.                         </div>
  26.                         <div class="col-lg-4 col-md-4 col-sm-5 col-xs-12 col-sm-offset-2">
  27.                             <? CAllcorp2::showAddress('address blocks');?>
  28.                         </div>
  29.                         <div class="col-lg-1 col-md-1 col-sm-5 col-xs-12">
  30.                             <div class="social-block">
  31.                                 <? $APPLICATION->IncludeComponent(
  32.                                     "aspro:social.info.allcorp2",
  33.                                     ".default",
  34.                                     array(
  35.                                         "CACHE_TYPE" => "A",
  36.                                         "CACHE_TIME" => "3600000",
  37.                                         "CACHE_GROUPS" => "N",
  38.                                         "COMPONENT_TEMPLATE" => ".default",
  39.                                         "SOCIAL_TITLE" => GetMessage("SOCIAL_TITLE")
  40.                                     ),
  41.                                     false
  42.                                 ); ?>
  43.                             </div>
  44.                         </div>
  45.                     </div>
  46.                 </div>
  47.             </div>
  48.         </div>
  49. </footer>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement