__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
-- WirePlumber
--
-- Copyright © 2022 Collabora Ltd.
--
-- SPDX-License-Identifier: MIT
--
-- example of a user injectible hook to link a node to a custom target
lutils = require ("linking-utils")
log = Log.open_topic ("s-linking")
SimpleEventHook {
name = "linking/sample-find-user-target",
before = "linking/find-defined-target",
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, "in find-user-target")
-- implement logic here to find a suitable target
-- store the found target on the event,
-- the next hooks will take care of linking
event:set_data ("target", target)
end
}:register ()
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| find-best-target.lua | File | 3.97 KB | 0644 |
|
| find-default-target.lua | File | 1.65 KB | 0644 |
|
| find-defined-target.lua | File | 4.25 KB | 0644 |
|
| find-filter-target.lua | File | 2.9 KB | 0644 |
|
| find-media-role-target.lua | File | 1.92 KB | 0644 |
|
| find-user-target.lua.example | File | 925 B | 0644 |
|
| get-filter-from-target.lua | File | 3.33 KB | 0644 |
|
| link-target.lua | File | 5.23 KB | 0644 |
|
| prepare-link.lua | File | 3.79 KB | 0644 |
|
| rescan-media-role-links.lua | File | 6.46 KB | 0644 |
|
| rescan.lua | File | 8.35 KB | 0644 |
|