Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PluginMarket
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stud.IP
Plugins
PluginMarket
Merge requests
!54
#20
let multiple plugin usages be reported
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Closed
#20
let multiple plugin usages be reported
github/fork/derfl0/master
into
master
Overview
3
Commits
2
Pipelines
0
Changes
7
Closed
#20 let multiple plugin usages be reported
Moritz Strohm
requested to merge
github/fork/derfl0/master
into
master
Jul 13, 2015
Overview
3
Commits
2
Pipelines
0
Changes
7
Created by: derfl0
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
4f824438
2 commits,
Sep 1, 2023
7 files
+
70
−
12
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
controllers/myplugins.php
+
11
−
0
View file @ 4f824438
Show full file
@@ -167,4 +167,15 @@ class MypluginsController extends MarketController
$this
->
redirect
(
'presenting/details/'
.
$this
->
release
->
plugin
->
getId
());
}
public
function
delete_action
(
$plugin_id
)
{
$this
->
marketplugin
=
MarketPlugin
::
find
(
$plugin_id
);
if
(
Request
::
submitted
(
'delete'
)
&&
$this
->
marketplugin
->
isWritable
())
{
CSRFProtection
::
verifyUnsafeRequest
();
$this
->
marketplugin
->
delete
();
$this
->
redirect
(
'myplugins/overview'
);
}
}
}
\ No newline at end of file
Loading