/adei/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/trunk

« back to all changes in this revision

Viewing changes to classes/views/scatterview.php

  • Committer: Suren A. Chilingaryan
  • Date: 2014-08-15 16:10:34 UTC
  • mfrom: (369.1.3 adei-asec)
  • Revision ID: csa@suren.me-20140815161034-3gidcc3204ijvhro
Merge SPECTRUMView from Arthur

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
    foreach ($caches as $key => $cachewrap) {
57
57
        array_push($result, array("label" => $cachewrap->GetGroupTitle(), "disabled" => 1));
58
58
        array_push($result2, array("label" => $cachewrap->GetGroupTitle(), "disabled" => 1));
59
 
        
 
59
 
60
60
        $id = 0;
61
61
        $list = $cachewrap->GetItemList();
62
62
        foreach ($list as $id => $info) {
71
71
 
72
72
    return array(
73
73
        array("select" => array("label" => _("x"), "id" => "x", "options" => $result)),
 
74
        array("xml"=>"<br/>"),
74
75
        array("select" => array("label" => _("y"), "id" => "y", "options" => $result2)),
75
76
    );
76
77
 }
83
84
    $x = $req->GetProp("view_x", false);
84
85
    $y = $req->GetProp("view_y", false);
85
86
 
86
 
    
 
87
 
87
88
    if ((!$x)||(!$y)) throw new ADEIException(translate("Parameters view_x and view_y are not set"));
88
89
    list($x_gid, $x_id) = explode(":", $x);
89
90
    list($y_gid, $y_id) = explode(":", $y);