Merge branch '2667-Añadir-ayuda-online-en-la-seccion-de-etiqueta-de-texto-de-una-consola-visual' into 'develop'
2667 añadir ayuda online en la seccion de etiqueta de texto de una consola visual See merge request artica/pandorafms!1713
This commit is contained in:
commit
a741e37f23
|
@ -166,7 +166,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) {
|
|||
'bars_graph',
|
||||
'clock');
|
||||
$form_items['label_row']['html'] =
|
||||
'<td align="left" valign="top" style="">' . __('Label') . '
|
||||
'<td align="left" valign="top" style="">' . __('Label') . ui_print_help_icon ('macros_visual_maps', true) . '
|
||||
|
||||
<div id="label_box_arrow" style="text-align:center;width:120px;height:110px;margin-top:50px;">
|
||||
<span>Label position</span>
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
/**
|
||||
* @package Include/help/en
|
||||
*/
|
||||
?>
|
||||
<h1>Visual maps' macros</h1>
|
||||
|
||||
It is possible to enter a macro in the text box when editing an element of the visual console.
|
||||
<br /><br />
|
||||
List of visual maps' macros:
|
||||
<ul>
|
||||
<li>_date_: Displays the date using the local PHP format. </li>
|
||||
<li>_time_: Displays the time using the local PHP format. </li>
|
||||
<li>_agent_: Displays the alias of the selected agent. </li>
|
||||
<li>_module_: Displays the name of the selected module. </li>
|
||||
<li>_agentdescription_: Displays the description of the selected agent. </li>
|
||||
<li>_address_: Displays the ip address of the selected agent. </li>
|
||||
<li>_description_moduledescription_: Displays the description of the selected module. </li>
|
||||
</ul>
|
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
/**
|
||||
* @package Include/help/es
|
||||
*/
|
||||
?>
|
||||
<h1>Macros de mapas visuales</h1>
|
||||
|
||||
Es posible introducir una macro en el cuadro de texto al editar un elemento de la consola visual.
|
||||
<br /><br />
|
||||
Lista de macros de mapas visuales:
|
||||
<ul>
|
||||
<li>_date_ : Muestra la fecha usando el formato local del PHP.</li>
|
||||
<li>_time_ : Muestra la hora usando el formato local del PHP.</li>
|
||||
<li>_agent_ : Muestra el alias del agente seleccionado.</li>
|
||||
<li>_module_ : Muestra el nombre del módulo seleccionado.</li>
|
||||
<li>_agentdescription_ : Muestra la descripción del agente seleccionado.</li>
|
||||
<li>_address_ : Muestra la dirección ip del agente seleccionado.</li>
|
||||
<li>_moduledescription_ : Muestra la descripción del módulo seleccionado.</li>
|
||||
</ul>
|
Loading…
Reference in New Issue