From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: network@lists.ipfire.org Subject: [PATCH 4/7] ports/zones: Add higher level function to get the description title Date: Mon, 19 Jun 2017 21:20:47 +0200 Message-ID: <1497900050-27692-4-git-send-email-jonatan.schlag@ipfire.org> In-Reply-To: <1497900050-27692-1-git-send-email-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7213753390108356700==" List-Id: --===============7213753390108356700== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Jonatan Schlag --- src/functions/functions.ports | 7 +++++++ src/functions/functions.zone | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/src/functions/functions.ports b/src/functions/functions.ports index db4e365..1c911f1 100644 --- a/src/functions/functions.ports +++ b/src/functions/functions.ports @@ -430,3 +430,10 @@ port_get_color() { local name=${1} color_read "port" ${name} } + +port_get_description_title() { + assert [ $# -eq 1 ] + + local name=${1} + description_title_read $(description_format_filename "port" "${name}") +} diff --git a/src/functions/functions.zone b/src/functions/functions.zone index 058110d..fd13875 100644 --- a/src/functions/functions.zone +++ b/src/functions/functions.zone @@ -1208,3 +1208,10 @@ zone_get_color() { local name=${1} color_read "zone" ${name} } + +zone_get_description_title() { + assert [ $# -eq 1 ] + + local name=${1} + description_title_read $(description_format_filename "zone" "${name}") +} -- 2.6.3 --===============7213753390108356700==--