예제 #1
0
 private function renderForm(Tag $t)
 {
     $dataMinlength = 'data-minlength';
     $dataMatch = "data-match";
     $dataMatchError = "data-match-error";
     $dataMinlengthError = "data-minlength-error";
     /** @noinspection PhpMethodParametersCountMismatchInspection */
     /** @noinspection PhpUndefinedFunctionInspection */
     /** @noinspection PhpUndefinedClassConstantInspection */
     return $t->div(a::c1ass('login-box-body'), [$t->p(a::c1ass('login-box-msg ' . $this->getClasses()), $this->getInfoMessage()), $t->form(a::c1ass('form-signin'), a::action('/auth/login'), a::method('POST'), [$t->div(a::c1ass('form-group has-feedback hidden register'), [$t->input(a::type('text'), a::c1ass('form-control'), a::placeholder(trans('placeholder.fullName')), a::id('inputFullName'), a::name('fullName'), a::autofocus('autofocus')), $t->span(a::c1ass('glyphicon glyphicon-user form-control-feedback')), $t->div(a::c1ass('help-block with-errors'))]), $t->div(a::c1ass('form-group has-feedback'), [$t->input(a::type('email'), a::c1ass('form-control'), a::placeholder(trans('placeholder.email')), a::id('inputEmail'), a::name('email'), a::required('required'), a::autofocus('autofocus')), $t->span(a::c1ass('glyphicon glyphicon-envelope form-control-feedback')), $t->div(a::c1ass('help-block with-errors'))]), $t->div(a::c1ass('form-group has-feedback'), [$t->input(a::type('password'), a::id('inputPassword'), a::name('password'), a::c1ass('form-control'), a::placeholder(trans('placeholder.password')), a::required('required'), a::$dataMinlength('8'), a::$dataMinlengthError(trans('auth.minimum.8.chars'))), $t->span(a::c1ass('glyphicon glyphicon-lock form-control-feedback')), $t->div(a::c1ass('help-block with-errors'))]), $t->div(a::c1ass('form-group has-feedback hidden register'), [$t->input(a::type('password'), a::id('inputRetypePassword'), a::name('retypedPassword'), a::c1ass('form-control'), a::placeholder(trans('placeholder.retype.password')), a::$dataMatch('#inputPassword'), a::$dataMatchError(trans('auth.password.doesnt.match'))), $t->span(a::c1ass('glyphicon glyphicon-lock form-control-feedback')), $t->div(a::c1ass('help-block with-errors'))]), $t->div(a::c1ass('row'), [$t->div(a::c1ass('col-xs-8'), [$t->div(a::c1ass('checkbox icheck'), [$t->label([$t->input(a::type('checkbox')), ' ' . trans('auth.remember.me')])])]), $t->div(a::c1ass('col-xs-4'), [$t->button(a::type('submit'), a::c1ass('btn btn-success btn-block btn-flat'), trans('auth.signin'))])]), $t->input(a::type("hidden"), a::name("_token"), a::value(csrf_token()))]), $t->div(a::c1ass('social-auth-links text-center'), [$t->p(trans('select.or')), $t->a(a::href('#'), a::c1ass("btn btn-block btn-social btn-facebook btn-flat"), [$t->i(a::c1ass("fa fa-facebook")), trans('auth.signin.facebook')]), $t->a(a::href('#'), a::c1ass("btn btn-block btn-social btn-google-plus btn-flat"), [$t->i(a::c1ass("fa fa-google-plus")), trans('auth.signin.google')]), $t->p(a::style('padding: 15px;'), trans('select.or')), $t->div(a::style('padding-bottom: 20px;'), $t->a(a::id('registerBtn'), a::c1ass('btn btn-block bg-gray color-palette btn-flat pull-left'), trans('auth.register')), $t->a(a::id('cancel'), a::c1ass('btn bg-gray color-palette btn-flat hidden pull-right'), a::style('text-align: right'), trans('auth.cancel')))])]);
 }
예제 #2
0
파일: Counter.php 프로젝트: maveius/solvre
 /**
  * @return string
  */
 public function render()
 {
     $t = new Tag();
     $className = $this->getClass();
     $counterValue = $this->getValue();
     return $counterValue != null ? $t->span(a::c1ass("label label-{$className}"), "{$counterValue}") : '';
 }
예제 #3
0
파일: AuthView.php 프로젝트: maveius/solvre
 private function createMenuItem($item, $icon, Tag $t)
 {
     if (AccessHelper::exists($item) && AccessHelper::hasPermission($item, $this->getLoggedUser())) {
         /** @noinspection PhpMethodParametersCountMismatchInspection */
         return $t->li($item === $this->getActive() ? a::c1ass('active') : '', [$t->a(a::href('/' . strtolower($item)), $t->i(a::c1ass('fa fa-' . strtolower($icon))), $t->span(trans('menu.' . strtolower($item))))]);
     } else {
         return '';
     }
 }
예제 #4
0
 /**
  * @param User $user
  * @param string $token
  * @return string
  */
 public function accountActivation($user, $token)
 {
     $t = new Tag();
     /** @noinspection PhpMethodParametersCountMismatchInspection */
     return $t->div(a::id('content'), a::style('width: 710px; text-align: left;'), $t->p($t->b(trans('email.welcome') . ' ' . $user->getFirstName())), $t->p(trans('email.your.account.has.been.created', ['solvreUrl' => solvreUrl()])), $t->span(trans('email.please.activate.account.by.link')), $t->span(a::style('word-wrap: break-word;'), trans('email.activation.link'), URL::to('/activate', array($token))), $t->br());
 }
예제 #5
0
파일: Example.php 프로젝트: maveius/liphte
 private function needing()
 {
     $t = new Tag();
     // CASE 1
     /** @noinspection PhpUndefinedClassInspection */
     /** @method div( assoc_array $htmlAttributes, string $content ) */
     /** @var string (last argument) */
     $t->div(['class' => 'test'], 'my content');
     // CASE 2
     /** @noinspection PhpUndefinedClassInspection */
     /** @method div( assoc_array $htmlAttributes, array_of_string ... $content ) */
     $t->div(['class' => 'test'], ['my content', 'my second content'], [' another content']);
     // CASE 3
     /** @noinspection PhpUndefinedClassInspection */
     /** @noinspection PhpMethodParametersCountMismatchInspection */
     /** @method div( assoc_array $htmlAttributes, Renderable ... $content ) */
     $t->span(['class' => 'test'], new Panel('my title', 'my content'), new Panel('my second title', 'my second content'));
     // CASE 4
     /** @noinspection PhpUndefinedClassInspection */
     /** @noinspection PhpMethodParametersCountMismatchInspection */
     /** @method div( assoc_array $htmlAttributes, mixed ... $content ) */
     /** @var mixed = array_of_string|Renderable */
     $t->div(['class' => 'test'], ['some content', 'another content'], new Panel('my second title', 'my second content'));
     // CASE 5
     /** @noinspection PhpUndefinedClassInspection PhpMethodParametersCountMismatchInspection */
     /** @method div( mixed ... $htmlAttributesOrContent ) */
     /** @var mixed_content = string|Renderable */
     /** @var mixed = assoc_array|array_of_mixed_content|Renderable */
     $t->div(['class' => 'test'], ['id' => 'test content'], ['some content', new Panel('my first panel title', 'my first content')], new Panel('my second title', 'my second content'));
     // ###################### Attributes ################################
     // CASE 1
     /** @noinspection PhpUndefinedClassInspection PhpMethodParametersCountMismatchInspection */
     /** @method div( mixed ... $htmlAttributesOrContent) */
     /** @var mixed = Attribute|string (last argument) */
     $t->div(a::c1ass('test'), a::id('test-content'), 'my content');
     // CASE 2
     /** @noinspection PhpUndefinedClassInspection PhpMethodParametersCountMismatchInspection */
     /** @method div( mixed ... $htmlAttributesOrContent) */
     /** @var mixed = Attribute|array_of_string */
     $t->div(a::c1ass('test'), a::id('test-content'), ['my content ', 'my second content '], ['else content']);
     // CASE 3
     /** @noinspection PhpMethodParametersCountMismatchInspection */
     /** @method div( mixed ... $htmlAttributesOrContent) */
     /** @var mixed = Attribute|Renderable */
     $t->span(a::c1ass('test'), a::id('test-content'), new Panel('my title', 'my content'), new Panel('my second title', 'my second content'));
     // CASE 4
     /** @noinspection PhpUndefinedClassInspection, PhpMethodParametersCountMismatchInspection */
     /** @method div( mixed ... $htmlAttributesOrContent) */
     /** @var mixed = Attribute|array_of_string|Renderable */
     $t->div(a::c1ass('test'), a::id('test-content'), ['some content', 'another content'], new Panel('my second title', 'my second content'));
     // CASE 5
     /** @noinspection PhpUndefinedClassInspection PhpMethodParametersCountMismatchInspection */
     /** @method div( mixed ... $htmlAttributesOrContent) */
     /** @var mixed_content = string|Renderable */
     /** @var mixed = Attribute|array_of_mixed_content|Renderable */
     $t->div(a::c1ass('test'), a::id('test-content'), ['some content', new Panel('my first panel title', 'my first content')], new Panel('my second title', 'my second content'));
     // ###################### Attributes And Assoc ################################
     // CASE 1
     /** @noinspection PhpUndefinedClassInspection PhpMethodParametersCountMismatchInspection */
     /** @method div( mixed ... $htmlAttributesOrContent) */
     /** @var mixed = Attribute|assoc_array|string (last argument) */
     $t->div(a::c1ass('test'), ['id' => 'test-content'], 'my content');
     // CASE 2
     /** @noinspection PhpUndefinedClassInspection PhpMethodParametersCountMismatchInspection */
     /** @method div( mixed ... $htmlAttributesOrContent) */
     /** @var mixed = Attribute|assoc_array|array_of_string */
     $t->div(a::c1ass('test'), ['id' => 'test-content'], ['my content ', 'my second content '], ['another content']);
     // CASE 3
     /** @noinspection PhpMethodParametersCountMismatchInspection */
     /** @method div( mixed ... $htmlAttributesOrContent) */
     /** @var mixed = Attribute|assoc_array|Renderable */
     $t->span(a::c1ass('test'), ['id' => 'test-content'], new Panel('my title', 'my content'), new Panel('my second title', 'my second content'));
     // CASE 4
     /** @noinspection PhpUndefinedClassInspection, PhpMethodParametersCountMismatchInspection */
     /** @method div( mixed ... $htmlAttributesOrContent) */
     /** @var mixed = Attribute|assoc_array|array_of_string|Renderable */
     $t->div(a::c1ass('test'), ['id' => 'test-content'], ['some content', 'another content'], new Panel('my second title', 'my second content'));
     // CASE 5
     /** @noinspection PhpUndefinedClassInspection PhpMethodParametersCountMismatchInspection */
     /** @method div( mixed ... $htmlAttributesOrContent) */
     /** @var mixed_content = string|Renderable */
     /** @var mixed = Attribute|assoc_array|array_of_mixed_content|Renderable */
     $t->div(a::c1ass('test'), ['id' => 'test-content'], ['some content', new Panel('my first panel title', 'my first content')], new Panel('my second title', 'my second content'));
     // CASE 6
     /** @noinspection PhpUndefinedClassInspection PhpMethodParametersCountMismatchInspection */
     /** @method div( mixed ... $htmlAttributesOrContent) */
     /** @var mixed_content = string|Renderable */
     /** @var mixed = Attribute|Attributes|assoc_array|array_of_mixed_content|string|Renderable*/
     $t->div(a::c1ass('test'), ['id' => 'test-content'], ['some content', new Panel('my first panel title', 'my first content')], new Panel('my second title', 'my second content'), 'aqua');
     // CASE 6
     /** @noinspection PhpUndefinedClassInspection PhpMethodParametersCountMismatchInspection */
     /** @method div( mixed ... $htmlAttributesOrContent ) */
     /** @var mixed = {attribute|content} */
     /** @var attribute = {Attribute|Attributes|assoc_array} */
     /** @var content = {string|array_of_string|array_of_mixed_content|Renderable} */
     /** @var mixed_content = {string|Renderable} */
     $t->div(a::c1ass('test'), ['id' => 'test-content'], ['some content', ' test'], new Panel('my second title', 'my second content'), 'aqua');
 }