123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <?php
- //
- // Copyright 2009 Clemson University
- //
- /*************************************************************************
- *
- */
- function tripal_cv_chart($chart_id){
- // parse out the tripal module name from the chart_id to find out
- // which Tripal "hook" to call:
- $tripal_mod = preg_replace("/^(tripal_.+?)_cv_chart_(.+)$/","$1",$chart_id);
- $callback = $tripal_mod . "_cv_chart";
- // now call the function in the module responsible for the chart. This
- // should call the tripal_cv_count_chart with the proper parameters set
- $opt = call_user_func_array($callback,array($chart_id));
- // build the JSON array to return to the javascript caller
- $json_arr = tripal_cv_count_chart($opt[count_mview],$opt[cvterm_id_column],
- $opt[count_column],$opt[filter],$opt[title], $opt[type],$opt[size]);
- $json_arr[] = $chart_id; // add the chart_id back into the json array
- return drupal_json($json_arr);
- }
- /*************************************************************************
- * name: tripal_cv_chart
- * description:
- */
- function tripal_cv_count_chart($cnt_table, $fk_column,
- $cnt_column, $filter = null, $title = '', $type = 'p3', $size='400x100') {
- if(!$type){
- $type = 'p3';
- }
- if(!$size){
- $size = '400x100';
- }
- if(!$filter){
- $filter = '(1=1)';
- }
- $isPie = 0;
- if(strcmp($type,'p')==0 or strcmp($type,'p3')==0){
- $isPie = 1;
- }
- $sql = "
- SELECT CVT.name, CVT.cvterm_id, CNT.$cnt_column as num_items
- FROM {$cnt_table} CNT
- INNER JOIN {cvterm} CVT on CNT.$fk_column = CVT.cvterm_id
- WHERE $filter
- ";
- $features = array();
- $previous_db = tripal_db_set_active('chado'); // use chado database
- $results = db_query($sql);
- tripal_db_set_active($previous_db); // now use drupal database
- $data = array();
- $axis = array();
- $legend = array();
- $total = 0;
- $max = 0;
- $i = 1;
- while($term = db_fetch_object($results)){
-
- if($isPie){
- $axis[] = "$term->name (".number_format($term->num_items).")";
- $data[] = array($term->num_items,0,0);
- } else {
- $axis[] = "$term->name (".number_format($term->num_items).")";
- $data[] = array($term->num_items);
- // $legend[] = "$term->name (".number_format($term->num_items).")";
- }
- if($term->num_items > $max){
- $max = $term->num_items;
- }
- $total += $term->num_items;
- $i++;
- }
- // convert numerical values into percentages
- foreach($data as &$set){
- $set[0] = ($set[0] / $total) * 100;
- }
- $opt[] = array(
- data => $data,
- axis_labels => $axis,
- legend => $legend,
- size => $size,
- type => $type,
-
- bar_width => 10,
- bar_spacing => 0,
- title => $title
- );
- // $opt[] = $sql;
-
- return $opt;
- }
|