當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Block::set_resizable方法代碼示例

本文整理匯總了PHP中Block::set_resizable方法的典型用法代碼示例。如果您正苦於以下問題:PHP Block::set_resizable方法的具體用法?PHP Block::set_resizable怎麽用?PHP Block::set_resizable使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Block的用法示例。


在下文中一共展示了Block::set_resizable方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: Block

</div></div>
	
<!-- Footer -->
<footer>
  <div class="container">
    <?php 
$footer = new Block('be-theme-pro-footer');
?>
    <?php 
$footer->html('{elements}');
?>
    <?php 
$footer->set_global(true);
?>
    <?php 
$footer->set_resizable(false);
?>
    <?php 
$footer->add_css_class("row");
?>

      <?php 
$block1 = new Block('be-theme-pro-footer-col-1');
?>
      <?php 
$block1->set_global(true);
?>
      <?php 
$block1->set_size('span4');
?>
      <?php 
開發者ID:hscale,項目名稱:builder-engine,代碼行數:31,代碼來源:footer.php

示例2: array

<div class="content">
   <div class="container">
      <div class="row">	  	  <div class="span12">
            <?php 
$slide_titles = array("Theme Title #1", "Theme Title #2", "Theme Title #3", "Theme Title #4", "Theme Title #5");
$slide_texts = array("Select EDIT and click on this block to display the banner slider settings. Add / Edit images, titles and this description text for each slide.", "Select EDIT and click on this block to display the banner slider settings. Add / Edit images, titles and this description text for each slide.", "Select EDIT and click on this block to display the banner slider settings. Add / Edit images, titles and this description text for each slide.", "Select EDIT and click on this block to display the banner slider settings. Add / Edit images, titles and this description text for each slide.", "Select EDIT and click on this block to display the banner slider settings. Add / Edit images, titles and this description text for each slide.");
$slide_images = array(get_theme_path() . "img/be_banner1.jpg", get_theme_path() . "img/be_banner2.jpg", get_theme_path() . "img/be_banner3.jpg", get_theme_path() . "img/be_banner4.jpg", get_theme_path() . "img/be_banner5.jpg");
$slide_urls = array("#", "#", "#", "#", "#");
?>
			
<!-- Content Starts -->
			
            <?php 
$content_holder = new Block("be-theme-pro-home-content-holder");
$content_holder->set_resizable(false);
$line1 = new Block("be-theme-pro-home-slider");
$line1->html("<div class=''>{content}</div>");
$line1->set_data('slide_title', $slide_titles);
$line1->set_data('slide_image', $slide_images);
$line1->set_data('slide_text', $slide_texts);
$line1->set_data('slide_url', $slide_urls);
$line1->set_data('style', array('margin-left' => '0px'));
$line1->set_type('slider');
$line1->set_size('span12');
?>
    
			
<!-- 2nd Line of Blocks -->

			<?php 
開發者ID:hscale,項目名稱:builder-engine,代碼行數:30,代碼來源:home.php

示例3: Block

<!-- Content starts -->

<div class="content">
   <div class="container">
      <div class="row">
         <div class="span12">
            
            <!-- Service starts -->
            
               <div class="row">
                  <div class="span12">
                    <?php 
$holder = new Block('business-commodore-1-theme-service-holder');
?>
                        <?php 
$holder->set_resizable(false);
?>
                        <?php 
$holder->html('{elements}');
?>
<!-- 1st Line of Blocks -->
                        <?php 
$line1 = new Block('business-commodore-1-theme-service-line1');
?>
                        <?php 
$line1->set_resizable(false);
?>
                        <?php 
$line1->set_content('
                           <div class="row">
                              <div class="hero span12">
開發者ID:hscale,項目名稱:builder-engine,代碼行數:31,代碼來源:service.php

示例4: Block

                    <?php 
$holder->html("{elements");
?>
                    <?php 
$holder->set_resizable(false);
?>


                    <?php 
$line1 = new Block("business-commodore-1-theme-portfolio-line1");
?>
                    <?php 
$line1->html("{content}");
?>
                    <?php 
$line1->set_resizable(false);
?>
                    <?php 
$line1->set_content('
                     <!-- Portfolio hero -->
                     <div class="hero">
                        <!-- Title -->
                        <h3><span>Portfolio</span></h3>
                        <!-- para -->
                        <p>Praesent at tellus porttitor nisl porttitor sagittis. Mauris in massa ligula, a tempor nulla. Ut tempus interdum mauris vel vehicula. Nulla ullamcorper tortor commodo in sagittis est accumsan.</p>
                     </div>
                     <!-- Portfolio -->
                     ');
?>
                     <?php 
$line1->show();
開發者ID:hscale,項目名稱:builder-engine,代碼行數:31,代碼來源:portfolio.php


注:本文中的Block::set_resizable方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。