183 lines
5.0 KiB
PHP
183 lines
5.0 KiB
PHP
<?php
|
|
|
|
use \SmartUI\Components\Button;
|
|
use \SmartUI\UI;
|
|
use \SmartUI\Util as SmartUtil;
|
|
use \Common\HTMLIndent;
|
|
|
|
//initilize the page
|
|
require_once 'init.web.php';
|
|
|
|
/*---------------- PHP Custom Scripts ---------
|
|
|
|
YOU CAN SET CONFIGURATION VARIABLES HERE BEFORE IT GOES TO NAV, RIBBON, ETC.
|
|
E.G. $page_title = "Custom Title" */
|
|
|
|
$page_title = "Button PHP Class";
|
|
|
|
/* ---------------- END PHP Custom Scripts ------------- */
|
|
|
|
//include header
|
|
//you can add your custom css in $page_css array.
|
|
//Note: all css files are inside css/ folder
|
|
$page_css[] = "your_style.css";
|
|
include("inc/header.php");
|
|
|
|
//include left panel (navigation)
|
|
//follow the tree in inc/config.ui.php
|
|
$page_nav["smartui"]["sub"]["button"]["active"] = true;
|
|
include("inc/nav.php");
|
|
|
|
?>
|
|
<!-- ==========================CONTENT STARTS HERE ========================== -->
|
|
<!-- MAIN PANEL -->
|
|
<div id="main" role="main">
|
|
<?php
|
|
//configure ribbon (breadcrumbs) array("name"=>"url"), leave url empty if no url
|
|
//$breadcrumbs["New Crumb"] => "http://url.com"
|
|
$breadcrumbs["Misc"] = "";
|
|
include("inc/ribbon.php");
|
|
?>
|
|
|
|
<!-- MAIN CONTENT -->
|
|
<div id="content">
|
|
<section id="widget-grid" class="">
|
|
<?php
|
|
|
|
$btn_simple = $_ui->create_button('Click Me!', 'danger')
|
|
->attr('href', 'http://facebook.com')->attr('target', '_blank')->container('a')
|
|
->icon('fa-gear')
|
|
->print_html(true);
|
|
|
|
$btn_spinning = $_ui->create_button('', 'success')
|
|
->class(array('bg-color-green', 'txt-color-white'))
|
|
->icon('fa-refresh fa-4x fa-spin')
|
|
->print_html(true);
|
|
|
|
$btn_circle = $_ui->create_button('', 'primary')
|
|
->class('btn-circle')->size('lg')
|
|
->icon('fa-check')->print_html(true);
|
|
|
|
$btn_labeled = $_ui->create_button('A Labeled Button', 'success')
|
|
->icon('fa-check')
|
|
->options('labeled', true)
|
|
->print_html(true);
|
|
|
|
// dropdown
|
|
$items = array(
|
|
'<a href="javascript:void(0);">Some action</a>',
|
|
'<a href="javascript:void(0);">Some other action</a>',
|
|
'-',
|
|
array(
|
|
'content' => '<a tabindex="-1" href="javascript:void(0);">Hover me for more options</a>',
|
|
'submenu' => array(
|
|
'<a tabindex="-1" href="javascript:void(0);">Second level</a>',
|
|
array(
|
|
'content' => '<a href="javascript:void(0);">Even More..</a>',
|
|
'submenu' => array(
|
|
'<a href="javascript:void(0);">3rd level</a>',
|
|
'<a href="javascript:void(0);">3rd level</a>'
|
|
)
|
|
),
|
|
'<a href="javascript:void(0);">Second level</a>',
|
|
'<a href="javascript:void(0);">Second level</a>'
|
|
)
|
|
)
|
|
);
|
|
|
|
$dropdown = $_ui->create_button('Simple Dropdown')
|
|
->dropdown('items', $items)->dropdown('split', false)
|
|
->print_html(true);
|
|
|
|
$dropdown_split = $_ui->create_button('Split Dropdown')
|
|
->dropdown('items', $items)->dropdown(
|
|
'split', array( // set to 'true' for defaults, or string for the type key
|
|
'type' => 'success',
|
|
'disabled' => false,
|
|
'dropup' => false,
|
|
'class' => array('class-1', 'class-2', 'class-custom'),
|
|
'attr' => array('data-custom-attr' => '12345')
|
|
)
|
|
)
|
|
->dropdown('multilevel', true)
|
|
->attr('href', 'http://twitter.com')->attr('data-custom-id', '34343')
|
|
->size(Button::BUTTON_SIZE_XSMALL)
|
|
->print_html(true);
|
|
|
|
$run_time = $_ui->run_time(false);
|
|
|
|
|
|
$widget = $_ui->create_widget();
|
|
$body = $btn_simple.$btn_spinning.$btn_circle.$btn_labeled.'
|
|
<hr class="simple" />
|
|
'.$dropdown.'
|
|
<hr class="simple" />
|
|
'.$dropdown_split;
|
|
$widget->body('content', $body)
|
|
->options('editbutton', false)
|
|
->header('title', '<h2>SmartUI::Button</h2>')->print_html();
|
|
|
|
$options = array(
|
|
"editbutton" => false,
|
|
"colorbutton" => false,
|
|
"collapsed" => true
|
|
);
|
|
|
|
// print html output
|
|
$hb = new HTMLIndent();
|
|
$html_snippet = SmartUtil::clean_html_string($hb->indent($body), false);
|
|
$contents = array(
|
|
"body" => '<pre class="prettyprint linenums">'.$html_snippet.'</pre>',
|
|
"header" => array(
|
|
"icon" => 'fa fa-code',
|
|
"title" => '<h2>HTML Output (Run Time: '.$run_time.')</h2>'
|
|
)
|
|
);
|
|
|
|
$_ui->create_widget($options, $contents)->color('pink')->print_html();
|
|
?>
|
|
<div class="row">
|
|
|
|
<div class="col-sm-12">
|
|
<div class="well">
|
|
<?php
|
|
|
|
$md = file_get_contents("docs/smartui/button.md");
|
|
$parsedown = new Parsedown();
|
|
$doc = $parsedown->parse($md);
|
|
echo str_replace('<pre', '<pre class="prettyprint linenums"', $doc);
|
|
|
|
?>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
</div>
|
|
<!-- END MAIN CONTENT -->
|
|
|
|
</div>
|
|
<!-- END MAIN PANEL -->
|
|
<!-- ==========================CONTENT ENDS HERE ========================== -->
|
|
|
|
<?php
|
|
//include required scripts
|
|
include("inc/scripts.php");
|
|
?>
|
|
|
|
<!-- PAGE RELATED PLUGIN(S)
|
|
<script src="..."></script>-->
|
|
<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
// PAGE RELATED SCRIPTS
|
|
})
|
|
|
|
</script>
|
|
|
|
<?php
|
|
//include footer
|
|
include("inc/footer.php");
|
|
?>
|