Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
wp-init
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wpdesk
wp-init
Merge requests
!1
Draft: Basic implementation of plugin initializer
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Draft: Basic implementation of plugin initializer
1.x
into
review
Overview
6
Commits
28
Pipelines
0
Changes
73
2 unresolved threads
Hide all comments
Closed
Bartek Jaskulski
requested to merge
1.x
into
review
2 years ago
Overview
6
Commits
28
Pipelines
0
Changes
73
2 unresolved threads
Hide all comments
Expand
Signed-off-by: Bart Jaskulski
bjaskulski@protonmail.com
👍
0
👎
0
Merge request reports
Compare
review
version 11
b77de519
1 year ago
version 10
7d9521c6
1 year ago
version 9
64a0769a
1 year ago
version 8
309d1742
1 year ago
version 7
9786f20f
1 year ago
version 6
8c70cdd4
1 year ago
version 5
b6d626a4
1 year ago
version 4
57b7b57f
2 years ago
version 3
597aa672
2 years ago
version 2
5b64e13e
2 years ago
version 1
7d8fa3ad
2 years ago
review (base)
and
latest version
latest version
9a91616d
28 commits,
1 year ago
version 11
b77de519
26 commits,
1 year ago
version 10
7d9521c6
25 commits,
1 year ago
version 9
64a0769a
24 commits,
1 year ago
version 8
309d1742
23 commits,
1 year ago
version 7
9786f20f
22 commits,
1 year ago
version 6
8c70cdd4
16 commits,
1 year ago
version 5
b6d626a4
13 commits,
1 year ago
version 4
57b7b57f
10 commits,
2 years ago
version 3
597aa672
9 commits,
2 years ago
version 2
5b64e13e
8 commits,
2 years ago
version 1
7d8fa3ad
7 commits,
2 years ago
73 files
+
2753
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
73
Search (e.g. *.vue) (Ctrl+P)
bin/wpinit
0 → 100755
+
17
−
0
Options
#!/usr/bin/env php
<?php
use
WPDesk\Init\Dumper\PhpFileDumper
;
include
$_composer_autoload_path
??
__DIR__
.
'/../vendor/autoload.php'
;
$filename
=
$argv
[
1
]
??
null
;
$parser
=
new
\WPDesk\Init\Plugin\DefaultHeaderParser
();
$data
=
$parser
->
parse
(
$filename
);
$dumper
=
new
PhpFileDumper
();
$dumper
->
dump
(
$parser
->
parse
(
$filename
),
$argv
[
2
]
);
//echo "Compile static plugin resources.";
Loading