You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Custom output can be added to the admin product view to expand the system. To add a custom button to the product, please proceed as follows: 

  1. Open the directory "/modules/servers/freenas".
  2. Create the file customconfig.php
  3. Insert following code

    <?php
    
    if (!function_exists('freenas_customButtons')) {
        function freenas_customButtons ($params) {
            return "<a href='clientsservices.php?id={$params['serviceid']}&do=doSomething'>Do Something</a>";
        }
    }

Using the publicly available API class, you can add your own functions to the module, the result would be as example:


You can handle GET or POST requests inside of the customconfig.php, e.g.:

<?php

if ($_GET['do'] === 'doSomething' AND !empty($_SESSION['adminid'])) {
	// do something
}

if (!function_exists('freenas_customButtons')) {
    function freenas_customButtons ($params) {
        return "<a href='clientsservices.php?id={$params['serviceid']}&do=doSomething'>Do Something</a>";
    }
}
  • No labels