19 declare(strict_types=1);
29 require_once(
'ViewControlBaseTest.php');
36 'A' =>
new Order(
'opt',
'ASC'),
37 'B' =>
new Order(
'opt',
'DESC')
40 $r = ILIAS\UI\Implementation\Component\Input\ViewControl\Renderer::class;
42 $this->assertInstanceOf(Signal::class, $vc->getInternalSignal());
43 $this->assertEquals($options, $vc->getOptions());
48 $this->expectException(\InvalidArgumentException::class);
50 'A' =>
new Order(
'opt',
'ASC'),
51 'B' =>
new Order(
'opt',
'DESC')
54 ->withValue(
'notokvalue:DESC');
60 'A' =>
new Order(
'opt',
'ASC'),
61 'B' =>
new Order(
'opt',
'DESC')
65 $input = $this->createMock(InputData::class);
66 $input->expects($this->exactly(2))
69 $this->onConsecutiveCalls($v[0], $v[1])
78 $df->ok($df->order(
'opt',
'DESC')),
81 $this->assertEquals($v, $vc->getValue());
88 'A' =>
new Order(
'opt',
'ASC'),
89 'B' =>
new Order(
'opt',
'DESC')
95 <div class="dropdown il-viewcontrol il-viewcontrol-sortation l-bar__element" id="id_3"> 96 <button class="btn btn-ctrl dropdown-toggle" type="button" data-toggle="dropdown" aria-label="label_sortation" aria-haspopup="true" aria-expanded="false" aria-controls="id_3_ctrl"><span class="caret"></span></button> 97 <ul id="id_3_ctrl" class="dropdown-menu"> 98 <li><button class="btn btn-link" id="id_1">A</button></li> 99 <li><button class="btn btn-link" id="id_2">B</button></li> 101 <div class="il-viewcontrol-value" role="none"> 102 <input id="id_4" type="hidden" value="" /> 103 <input id="id_5" type="hidden" value="" /> 108 $this->assertEquals($expected, $html);
113 $options = [
'A' =>
new Order(
'opt',
'ASC')];
114 $this->expectException(\LogicException::class);
115 $this->
buildVCFactory()->sortation($options)->getOnChangeSignal();
testViewControlSortationWithWrongValue()
getDefaultRenderer(JavaScriptBinding $js_binding=null, array $with_stub_renderings=[])
brutallyTrimHTML(string $html)
A more radical version of normalizeHTML.
Both the subject and the direction need to be specified when expressing an order. ...
testViewControlSortationConstruct()
testViewControlSortationRenderingOutsideContainer()
testViewControlFieldSortationRendering()
testViewControlSortationWithInput()