"
                        value="1"
                <?php 
    if (isset($this->tools[$groupTool['label']]) && $this->tools[$groupTool['label']]) {
        ?>
                        checked="checked"
                <?php 
    }
    ?>
                     />
                    <label for="<?php 
    echo $groupTool['label'];
    ?>
">
                        <?php 
    echo get_lang(claro_get_module_name($groupTool['label']));
    ?>
                    </label>
                </span>
            </td>
        </tr>
    <?php 
}
?>

        <tr>
            <td valign="top">
                <input type="submit" name="properties" value="<?php 
echo get_lang("Ok");
?>
" />
Exemple #2
0
/**
 * Get the name of a tool
 * @param string identifier is tool_id or tool_label
 * @return string tool name
 */
function claro_get_tool_name($identifier)
{
    return claro_get_module_name($identifier);
}