Changeset 540 for trunk/Common/Form


Ignore:
Timestamp:
May 28, 2013, 10:19:39 PM (12 years ago)
Author:
chronos
Message:
  • Přidáno: Třída pro připojení k RouterOS přes API.
  • Upraveno: Zobrazovat procházení položek 1:n pouze v modulu IS.
  • Opraveno: Negenerovat záznam zákazníka při generování řízení toku sítě v případě, že je na jednoho napojeno více služeb.
Location:
trunk/Common/Form
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Common/Form/Form.php

    r538 r540  
    275275  var $Type;
    276276  var $RootURL;
     277  var $ShowRelation;
    277278 
    278279  function __construct($Database)
     
    282283    $this->FormTypes = array();
    283284    $this->Type = new Type($this);
     285    $this->ShowRelation = false;   
    284286  }
    285287 
  • trunk/Common/Form/Types/OneToMany.php

    r536 r540  
    1212    if($Item['Value'] != '')
    1313    {
    14       /*if(array_key_exists('View', $Type['Parameters'])) $Table = $Type['Parameters']['View'];
    15         else $Table = $Type['Parameters']['Table'];
    16       $DbResult = $this->Database->query('SELECT '.$Type['Parameters']['Name'].
    17         ' AS `Name` FROM `'.$Table.'` WHERE `'.
    18         $Type['Parameters']['Id'].'`='.$Item['Value']);
    19       $DbRow = $DbResult->fetch_assoc();
    20       $Output = '<a href="?t='.$Type['Parameters']['Table'].'&amp;a='.
    21         'view'.'&amp;i='.$Item['Value'].'">'.$DbRow['Name'].'</a>';*/
    2214      $Output = '<a href="?t='.$Type['Parameters']['Table'].'&amp;a='.
    2315        'view'.'&amp;i='.$Item['Value'].'">'.$Item['Filter'].'</a>';
     
    4638    }
    4739    $Output .= '</select>';
    48     $Output .=  '<img src="'.$this->FormManager->Root.'/images/select.png" alf="Vybrat" language="javascript" '.
    49       'onclick="return popupwindow(&quot;'.$this->FormManager->Root.'/is/?a=select&amp;t='.$Table.'&amp;r='.$Item['Name'].'&quot;,&quot;test&quot;);" style="cursor:hand;cursor:pointer"/>';
     40    if($this->FormManager->ShowRelation)
     41      $Output .=  '<img src="'.$this->FormManager->Root.'/images/select.png" alf="Vybrat" language="javascript" '.
     42        'onclick="return popupwindow(&quot;'.$this->FormManager->Root.'/is/?a=select&amp;t='.$Table.'&amp;r='.$Item['Name'].'&quot;,&quot;test&quot;);" style="cursor:hand;cursor:pointer"/>';
    5043    return($Output);
    5144  }
Note: See TracChangeset for help on using the changeset viewer.