43 lines
807 B
PHP
43 lines
807 B
PHP
|
<?php
|
||
|
require_once '../vendor/autoload.php';
|
||
|
|
||
|
$widget = new \Itguild\PhpCgSelect\CGSelect(".cg-dropdown_selector", [
|
||
|
'placeholder' => 'Choose a car',
|
||
|
'label' => 'Example',
|
||
|
'name' => 'some',
|
||
|
'items' => [
|
||
|
'BMW',
|
||
|
[
|
||
|
'id' => 1,
|
||
|
'title' => 'Opel',
|
||
|
'value' => 23,
|
||
|
],
|
||
|
'Lada'
|
||
|
],
|
||
|
'styles' => [
|
||
|
'head' => [
|
||
|
'width' => '500px',
|
||
|
]
|
||
|
],
|
||
|
])
|
||
|
|
||
|
?>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>PHP CG-Select Example</title>
|
||
|
<?php \Itguild\PhpCgSelect\CGSelect::renderCDN(); ?>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<div>
|
||
|
<form action="">
|
||
|
<button class="cg-dropdown_selector"></button>
|
||
|
<button type="submit">Оправить</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
|
||
|
<script>
|
||
|
<?php echo $widget->getJS() ?>
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|