本文整理汇总了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
示例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
示例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">
示例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();