$userpick = $user->userpick()->preview(100,100); $url = mod::action("board_controller_report","worker",array( "id" => $user->id(), ));
{$user->title()}
tmp::exec("snippet"); $chart = google_chart::create(); $chart->columnChart(); $chart->width(400); $chart->col("день","string"); $chart->col("Потрачено времени"); for($i=60;$i>=0;$i--) { $date = util::now()->shiftDay(-$i)->date(); $log = board_task_log::all() ->eq("userID",$user->id()) ->eq("date(created)",$date); $chart->row($date->txt(),$log->sum("timeSpent")); } $chart->exec();