Added placeholder extension methods
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
@file:JvmName("PlaceholderExtensions")
|
||||
|
||||
package com.willfp.eco.core.placeholder
|
||||
|
||||
import com.willfp.eco.core.integrations.placeholder.PlaceholderManager
|
||||
import com.willfp.eco.core.placeholder.context.PlaceholderContext
|
||||
|
||||
/** @see PlaceholderManager.translatePlaceholders */
|
||||
fun String.translatePlaceholders(context: PlaceholderContext) =
|
||||
PlaceholderManager.translatePlaceholders(this, context)
|
||||
|
||||
/** @see PlaceholderManager.findPlaceholdersIn */
|
||||
fun String.findPlaceholders(): List<String> =
|
||||
PlaceholderManager.findPlaceholdersIn(this)
|
||||
Reference in New Issue
Block a user