Skip to content
Snippets Groups Projects
Commit f83fcf47 authored by Jared Hancock's avatar Jared Hancock
Browse files

org: Add help tips for ticket sharing, email domain

parent f6ccc3f6
No related branches found
No related tags found
No related merge requests found
#
# This is the view / management page for an organization in the user
# directory
#
# Fields:
# title - Shown in bold at the top of the popover window
# content - The body of the help popover
# links - List of links shows below the content
# title - Link title
# href - href of link (links starting with / are translated to the
# helpdesk installation path)
#
# The key names such as 'helpdesk_name' should not be translated as they
# must match the HTML #ids put into the page template.
#
---
org_sharing:
title: Ticket Sharing
content: >
<p>
Organization ticket sharing allows members access to tickets owned
by other members of the organization.
</p>
<p class="info-banner">
<i class="icon-info-sign"></i>
Collaborators always have access to tickets.
</p>
email_domain:
title: Email Domain
content: >
Users can be automatically added to this organization based on their
email domain(s). Use the box below to enter one or more domains
separated by commas. For example, enter <code>mycompany.com</code>
for users with email addresses ending in @mycompany.com
...@@ -20,7 +20,7 @@ if ($info['error']) { ...@@ -20,7 +20,7 @@ if ($info['error']) {
><i class="icon-fixed-width icon-cogs faded"></i>&nbsp;<?php ><i class="icon-fixed-width icon-cogs faded"></i>&nbsp;<?php
echo __('Settings'); ?></a></li> echo __('Settings'); ?></a></li>
</ul> </ul>
<form method="post" class="org" action="<?php echo $action; ?>"> <form method="post" class="org" action="<?php echo $action; ?>" data-tip-namespace="org">
<div id="orgprofile_container"> <div id="orgprofile_container">
<div class="tab_content" id="profile" style="margin:5px;"> <div class="tab_content" id="profile" style="margin:5px;">
<?php <?php
...@@ -111,7 +111,7 @@ if ($ticket && $ticket->getOwnerId() == $user->getId()) ...@@ -111,7 +111,7 @@ if ($ticket && $ticket->getOwnerId() == $user->getId())
<option value="sharing-all" <?php echo $info['sharing-all'] ? 'selected="selected"' : ''; <option value="sharing-all" <?php echo $info['sharing-all'] ? 'selected="selected"' : '';
?>><?php echo __('All members see all tickets'); ?></option> ?>><?php echo __('All members see all tickets'); ?></option>
</select> </select>
<i class="help-tip icon-question-sign" href="#org-sharing"></i> <i class="help-tip icon-question-sign" href="#org_sharing"></i>
</td> </td>
</tr> </tr>
<tr> <tr>
...@@ -140,6 +140,7 @@ if ($ticket && $ticket->getOwnerId() == $user->getId()) ...@@ -140,6 +140,7 @@ if ($ticket && $ticket->getOwnerId() == $user->getId())
<tr> <tr>
<th colspan="2"> <th colspan="2">
<?php echo __('Email Domain'); ?> <?php echo __('Email Domain'); ?>
<i class="help-tip icon-question-sign" href="#email_domain"></i>
</th> </th>
</tr> </tr>
<tr> <tr>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment