Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
S
sidekick
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Privat - Marco Schmiedel
sidekick
Commits
efd06d41
Commit
efd06d41
authored
Aug 16, 2022
by
Kevin Yumang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SERV-2286 - removed looper element
parent
ff8eb2be
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
78 deletions
+0
-78
Master.blade.php
src/Views/Limitless/Help/Layout/Master.blade.php
+0
-1
Config.php
src/Views/Limitless/Looper/Config.php
+0
-63
Index.blade.php
src/Views/Limitless/Looper/Documentation/Index.blade.php
+0
-12
Start.blade.php
src/Views/Limitless/Looper/Start.blade.php
+0
-1
Stop.blade.php
src/Views/Limitless/Looper/Stop.blade.php
+0
-1
No files found.
src/Views/Limitless/Help/Layout/Master.blade.php
View file @
efd06d41
...
@@ -44,7 +44,6 @@
...
@@ -44,7 +44,6 @@
@
Limitless
::
SideNavMenuItem
([
'url'
=>
'?page=Element.Legend'
,
'target'
=>
'_self'
,
'icon'
=>
'icon-vcard'
,
'title'
=>
'Legend'
])
@
Limitless
::
SideNavMenuItem
([
'url'
=>
'?page=Element.Legend'
,
'target'
=>
'_self'
,
'icon'
=>
'icon-vcard'
,
'title'
=>
'Legend'
])
@
Limitless
::
SideNavMenuItem
([
'url'
=>
'?page=Listgroup'
,
'target'
=>
'_self'
,
'icon'
=>
'icon-list-unordered'
,
'title'
=>
'List Group'
])
@
Limitless
::
SideNavMenuItem
([
'url'
=>
'?page=Listgroup'
,
'target'
=>
'_self'
,
'icon'
=>
'icon-list-unordered'
,
'title'
=>
'List Group'
])
@
Limitless
::
SideNavMenuItem
([
'url'
=>
'?page=Element.LoremIpsum'
,
'target'
=>
'_self'
,
'icon'
=>
'icon-bubble-lines3'
,
'title'
=>
'Lorem Ipsum'
])
@
Limitless
::
SideNavMenuItem
([
'url'
=>
'?page=Element.LoremIpsum'
,
'target'
=>
'_self'
,
'icon'
=>
'icon-bubble-lines3'
,
'title'
=>
'Lorem Ipsum'
])
@
Limitless
::
SideNavMenuItem
([
'url'
=>
'?page=Looper'
,
'target'
=>
'_self'
,
'icon'
=>
'icon-loop3'
,
'title'
=>
'Looper'
])
@
Limitless
::
SideNavMenuItem
([
'url'
=>
'?page=Modal'
,
'target'
=>
'_self'
,
'icon'
=>
'icon-stack'
,
'title'
=>
'Modal'
])
@
Limitless
::
SideNavMenuItem
([
'url'
=>
'?page=Modal'
,
'target'
=>
'_self'
,
'icon'
=>
'icon-stack'
,
'title'
=>
'Modal'
])
@
Limitless
::
SideNavMenuItem
([
'url'
=>
'?page=Notification'
,
'target'
=>
'_self'
,
'icon'
=>
'icon-popout'
,
'title'
=>
'Notification'
])
@
Limitless
::
SideNavMenuItem
([
'url'
=>
'?page=Notification'
,
'target'
=>
'_self'
,
'icon'
=>
'icon-popout'
,
'title'
=>
'Notification'
])
@
Limitless
::
SideNavMenuItem
([
'url'
=>
'?page=Element.RandomSelect'
,
'target'
=>
'_self'
,
'icon'
=>
'icon-shuffle'
,
'title'
=>
'Random Select'
])
@
Limitless
::
SideNavMenuItem
([
'url'
=>
'?page=Element.RandomSelect'
,
'target'
=>
'_self'
,
'icon'
=>
'icon-shuffle'
,
'title'
=>
'Random Select'
])
...
...
src/Views/Limitless/Looper/Config.php
deleted
100644 → 0
View file @
ff8eb2be
<?php
/*
|------------------------------------------------------------------------------------------------
| Information
|------------------------------------------------------------------------------------------------
|
| This file is beautified by the command "sidekick:CodebeautifierCommand" of the ceetrox
| sidekick package.
|
| Author: Kevin Almond Roe Yumang <kevin.yumang@itmax.email>
| Update: 2022-06-30 02:31:57
|
*/
namespace
Ceetrox\Sidekick\Views\Limitless\Looper
;
/*
|------------------------------------------------------------------------------------------------
| Dependencies
|------------------------------------------------------------------------------------------------
*/
use
View
;
/*
|------------------------------------------------------------------------------------------------
| Class "Config"
|------------------------------------------------------------------------------------------------
*/
class
Config
{
public
$methodAllocation
=
[
'Limitless::LooperStart'
=>
'looperStart'
,
'Limitless::LooperEnd'
=>
'looperEnd'
,
];
/*
|--------------------------------------------------------------------------------------------
| Method "looperStart"
|--------------------------------------------------------------------------------------------
*/
public
function
looperStart
(
$parameters
)
{
return
View
(
'Limitless::Looper.Start'
)
->
withLimit
(
$parameters
==
[]
?
1
:
$parameters
);
}
/*
|--------------------------------------------------------------------------------------------
| Method "looperStop"
|--------------------------------------------------------------------------------------------
*/
public
function
looperStop
()
{
return
View
(
'Limitless::Looper.Stop'
);
}
}
src/Views/Limitless/Looper/Documentation/Index.blade.php
deleted
100644 → 0
View file @
ff8eb2be
{{
--
Layout
Reference
--
}}
@
extends
(
'Limitless::Help.Layout.Master'
)
@
section
(
'Limitless::Content'
)
@
Limitless
::
CardStart
([
'title'
=>
"Description"
,
'icon'
=>
'icon-info22'
])
@
Limitless
::
LooperStart
(
10
)
hello
@
Limitless
::
LooperStop
@
Limitless
::
CardStop
@
stop
\ No newline at end of file
src/Views/Limitless/Looper/Start.blade.php
deleted
100644 → 0
View file @
ff8eb2be
@
for
(
$i
=
0
;
$i
<
$limit
;
$i
++
)
src/Views/Limitless/Looper/Stop.blade.php
deleted
100644 → 0
View file @
ff8eb2be
@
endfor
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment