1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363 |
- <?php
- /* For licensing terms, see /license.txt */
- use Fhaculty\Graph\Graph;
- use Fhaculty\Graph\Vertex;
- /**
- * Class Career.
- */
- class Career extends Model
- {
- public $table;
- public $columns = [
- 'id',
- 'name',
- 'description',
- 'status',
- 'created_at',
- 'updated_at',
- ];
- /**
- * Constructor.
- */
- public function __construct()
- {
- $this->table = Database::get_main_table(TABLE_CAREER);
- }
- /**
- * Get the count of elements.
- *
- * @return int
- */
- public function get_count()
- {
- $row = Database::select(
- 'count(*) as count',
- $this->table,
- [],
- 'first'
- );
- return $row['count'];
- }
- /**
- * @param array $where_conditions
- *
- * @return array
- */
- public function get_all($where_conditions = [])
- {
- return Database::select(
- '*',
- $this->table,
- ['where' => $where_conditions, 'order' => 'name ASC']
- );
- }
- /**
- * Update all promotion status by career.
- *
- * @param int $career_id
- * @param int $status (1 or 0)
- */
- public function update_all_promotion_status_by_career_id($career_id, $status)
- {
- $promotion = new Promotion();
- $promotion_list = $promotion->get_all_promotions_by_career_id($career_id);
- if (!empty($promotion_list)) {
- foreach ($promotion_list as $item) {
- $params['id'] = $item['id'];
- $params['status'] = $status;
- $promotion->update($params);
- $promotion->update_all_sessions_status_by_promotion_id($params['id'], $status);
- }
- }
- }
- /**
- * Returns HTML the title + grid.
- *
- * @return string
- */
- public function display()
- {
- $html = '<div class="actions" style="margin-bottom:20px">';
- $html .= '<a href="career_dashboard.php">'.
- Display::return_icon('back.png', get_lang('Back'), '', ICON_SIZE_MEDIUM).'</a>';
- if (api_is_platform_admin()) {
- $html .= '<a href="'.api_get_self().'?action=add">'.
- Display::return_icon('new_career.png', get_lang('Add'), '', ICON_SIZE_MEDIUM).'</a>';
- }
- $html .= '</div>';
- $html .= Display::grid_html('careers');
- return $html;
- }
- /**
- * @return array
- */
- public function get_status_list()
- {
- return [
- CAREER_STATUS_ACTIVE => get_lang('Unarchived'),
- CAREER_STATUS_INACTIVE => get_lang('Archived'),
- ];
- }
- /**
- * Returns a Form validator Obj.
- *
- * @todo the form should be auto generated
- *
- * @param string $url
- * @param string $action add, edit
- *
- * @return FormValidator
- */
- public function return_form($url, $action)
- {
- $form = new FormValidator('career', 'post', $url);
- // Setting the form elements
- $header = get_lang('Add');
- if ($action == 'edit') {
- $header = get_lang('Edit');
- }
- $id = isset($_GET['id']) ? (int) $_GET['id'] : '';
- $form->addHeader($header);
- $form->addHidden('id', $id);
- $form->addElement('text', 'name', get_lang('Name'), ['size' => '70']);
- $form->addHtmlEditor(
- 'description',
- get_lang('Description'),
- false,
- false,
- [
- 'ToolbarSet' => 'Careers',
- 'Width' => '100%',
- 'Height' => '250',
- ]
- );
- $status_list = $this->get_status_list();
- $form->addElement('select', 'status', get_lang('Status'), $status_list);
- if ($action == 'edit') {
- $extraField = new ExtraField('career');
- $extraField->addElements($form, $id);
- $form->addElement('text', 'created_at', get_lang('Created at'));
- $form->freeze('created_at');
- $form->addButtonSave(get_lang('Edit'));
- } else {
- $form->addButtonCreate(get_lang('Add'));
- }
- // Setting the defaults
- $defaults = $this->get($id);
- if (!empty($defaults['created_at'])) {
- $defaults['created_at'] = api_convert_and_format_date($defaults['created_at']);
- }
- if (!empty($defaults['updated_at'])) {
- $defaults['updated_at'] = api_convert_and_format_date($defaults['updated_at']);
- }
- $form->setDefaults($defaults);
- // Setting the rules
- $form->addRule('name', get_lang('Required field'), 'required');
- return $form;
- }
- /**
- * Copies the career to a new one.
- *
- * @param int Career ID
- * @param bool Whether or not to copy the promotions inside
- *
- * @return int New career ID on success, false on failure
- */
- public function copy($id, $copy_promotions = false)
- {
- $career = $this->get($id);
- $new = [];
- foreach ($career as $key => $val) {
- switch ($key) {
- case 'id':
- case 'updated_at':
- break;
- case 'name':
- $val .= ' '.get_lang('Copy');
- $new[$key] = $val;
- break;
- case 'created_at':
- $val = api_get_utc_datetime();
- $new[$key] = $val;
- break;
- default:
- $new[$key] = $val;
- break;
- }
- }
- $cid = $this->save($new);
- if ($copy_promotions) {
- //Now also copy each session of the promotion as a new session and register it inside the promotion
- $promotion = new Promotion();
- $promo_list = $promotion->get_all_promotions_by_career_id($id);
- if (!empty($promo_list)) {
- foreach ($promo_list as $item) {
- $promotion->copy($item['id'], $cid, true);
- }
- }
- }
- return $cid;
- }
- /**
- * @param int $career_id
- *
- * @return bool
- */
- public function get_status($career_id)
- {
- $table = Database::get_main_table(TABLE_CAREER);
- $career_id = intval($career_id);
- $sql = "SELECT status FROM $table WHERE id = '$career_id'";
- $result = Database::query($sql);
- if (Database::num_rows($result) > 0) {
- $data = Database::fetch_array($result);
- return $data['status'];
- } else {
- return false;
- }
- }
- /**
- * @param array $params
- * @param bool $show_query
- *
- * @return int
- */
- public function save($params, $show_query = false)
- {
- $career = new \Chamilo\CoreBundle\Entity\Career();
- $career
- ->setName($params['name'])
- ->setStatus($params['status'])
- ->setDescription($params['description']);
- Database::getManager()->persist($career);
- Database::getManager()->flush();
- if ($career->getId()) {
- Event::addEvent(
- LOG_CAREER_CREATE,
- LOG_CAREER_ID,
- $career->getId(),
- api_get_utc_datetime(),
- api_get_user_id()
- );
- }
- return $career->getId();
- }
- /**
- * Delete a record from the career table and report in the default events log table.
- *
- * @param int $id The ID of the career to delete
- *
- * @return bool True if the career could be deleted, false otherwise
- */
- public function delete($id)
- {
- $res = parent::delete($id);
- if ($res) {
- $extraFieldValues = new ExtraFieldValue('career');
- $extraFieldValues->deleteValuesByItem($id);
- Event::addEvent(
- LOG_CAREER_DELETE,
- LOG_CAREER_ID,
- $id,
- api_get_utc_datetime(),
- api_get_user_id()
- );
- }
- return $res;
- }
- /**
- * {@inheritdoc}
- */
- public function update($params, $showQuery = false)
- {
- if (isset($params['description'])) {
- $params['description'] = Security::remove_XSS($params['description']);
- }
- return parent::update($params, $showQuery);
- }
- /**
- * @param array
- * @param Graph $graph
- *
- * @return string
- */
- public static function renderDiagram($careerInfo, $graph)
- {
- if (!($graph instanceof Graph)) {
- return '';
- }
- // Getting max column
- $maxColumn = 0;
- foreach ($graph->getVertices() as $vertex) {
- $groupId = (int) $vertex->getGroup();
- if ($groupId > $maxColumn) {
- $maxColumn = $groupId;
- }
- }
- $list = [];
- /** @var Vertex $vertex */
- foreach ($graph->getVertices() as $vertex) {
- $group = $vertex->getAttribute('Group');
- $groupData = explode(':', $group);
- $group = $groupData[0];
- $groupLabel = isset($groupData[1]) ? $groupData[1] : '';
- $subGroup = $vertex->getAttribute('SubGroup');
- $subGroupData = explode(':', $subGroup);
- $column = $vertex->getGroup();
- $row = $vertex->getAttribute('Row');
- $subGroupId = $subGroupData[0];
- $label = isset($subGroupData[1]) ? $subGroupData[1] : '';
- $list[$group][$subGroupId]['columns'][$column][$row] = $vertex;
- $list[$group][$subGroupId]['label'] = $label;
- $list[$group]['label'] = $groupLabel;
- }
- $maxGroups = count($list);
- $widthGroup = 30;
- if (!empty($maxGroups)) {
- $widthGroup = 85 / $maxGroups;
- }
- $connections = '';
- $groupDrawLine = [];
- $groupCourseList = [];
- // Read Connections column
- foreach ($list as $group => $subGroupList) {
- foreach ($subGroupList as $subGroupData) {
- $columns = isset($subGroupData['columns']) ? $subGroupData['columns'] : [];
- $showGroupLine = true;
- if (count($columns) == 1) {
- $showGroupLine = false;
- }
- $groupDrawLine[$group] = $showGroupLine;
- //if ($showGroupLine == false) {
- /** @var Vertex $vertex */
- foreach ($columns as $row => $items) {
- foreach ($items as $vertex) {
- if ($vertex instanceof Vertex) {
- $groupCourseList[$group][] = $vertex->getId();
- $connectionList = $vertex->getAttribute('Connections');
- $firstConnection = '';
- $secondConnection = '';
- if (!empty($connectionList)) {
- $explode = explode('-', $connectionList);
- $pos = strpos($explode[0], 'SG');
- if ($pos === false) {
- $pos = strpos($explode[0], 'G');
- if (is_numeric($pos)) {
- // group_123 id
- $groupValueId = (int) str_replace(
- 'G',
- '',
- $explode[0]
- );
- $firstConnection = 'group_'.$groupValueId;
- $groupDrawLine[$groupValueId] = true;
- } else {
- // Course block (row_123 id)
- if (!empty($explode[0])) {
- $firstConnection = 'row_'.(int) $explode[0];
- }
- }
- } else {
- // subgroup__123 id
- $firstConnection = 'subgroup_'.(int) str_replace('SG', '', $explode[0]);
- }
- $pos = strpos($explode[1], 'SG');
- if ($pos === false) {
- $pos = strpos($explode[1], 'G');
- if (is_numeric($pos)) {
- $groupValueId = (int) str_replace(
- 'G',
- '',
- $explode[1]
- );
- $secondConnection = 'group_'.$groupValueId;
- $groupDrawLine[$groupValueId] = true;
- } else {
- // Course block (row_123 id)
- if (!empty($explode[0])) {
- $secondConnection = 'row_'.(int) $explode[1];
- }
- }
- } else {
- $secondConnection = 'subgroup_'.(int) str_replace('SG', '', $explode[1]);
- }
- if (!empty($firstConnection) && !empty($firstConnection)) {
- $connections .= self::createConnection(
- $firstConnection,
- $secondConnection,
- ['Left', 'Right']
- );
- }
- }
- }
- }
- }
- //}
- }
- }
- $graphHtml = '<div class="container">';
- foreach ($list as $group => $subGroupList) {
- $showGroupLine = false;
- if (isset($groupDrawLine[$group]) && $groupDrawLine[$group]) {
- $showGroupLine = true;
- }
- $graphHtml .= self::parseSubGroups(
- $groupCourseList,
- $group,
- $list[$group]['label'],
- $showGroupLine,
- $subGroupList,
- $widthGroup
- );
- }
- $graphHtml .= '</div>';
- $graphHtml .= $connections;
- return $graphHtml;
- }
- /**
- * @param array $careerInfo
- * @param Template $tpl
- * @param int $loadUserIdData
- *
- * @return string
- */
- public static function renderDiagramByColumn($careerInfo, $tpl, $loadUserIdData = 0)
- {
- $careerId = isset($careerInfo['id']) ? $careerInfo['id'] : 0;
- if (empty($careerId)) {
- return '';
- }
- $extraFieldValue = new ExtraFieldValue('career');
- $item = $extraFieldValue->get_values_by_handler_and_field_variable(
- $careerId,
- 'career_diagram',
- false,
- false,
- false
- );
- $graph = null;
- if (!empty($item) && isset($item['value']) && !empty($item['value'])) {
- /** @var Graph $graph */
- $graph = UnserializeApi::unserialize('career', $item['value']);
- }
- if (!($graph instanceof Graph)) {
- return '';
- }
- // Getting max column
- $maxColumn = 0;
- foreach ($graph->getVertices() as $vertex) {
- $groupId = (int) $vertex->getGroup();
- if ($groupId > $maxColumn) {
- $maxColumn = $groupId;
- }
- }
- $userResult = [];
- if (!empty($loadUserIdData)) {
- $careerData = UserManager::getUserCareer($loadUserIdData, $careerId);
- if (isset($careerData['extra_data']) && !empty($careerData['extra_data'])) {
- $userResult = unserialize($careerData['extra_data']);
- }
- }
- $list = [];
- $subGroups = [];
- /** @var Vertex $vertex */
- foreach ($graph->getVertices() as $vertex) {
- $column = $vertex->getGroup();
- $group = $vertex->getAttribute('Group');
- $groupData = explode(':', $group);
- $group = $groupData[0];
- $groupLabel = isset($groupData[1]) ? $groupData[1] : '';
- $subGroup = $vertex->getAttribute('SubGroup');
- $subGroupData = explode(':', $subGroup);
- $row = $vertex->getAttribute('Row');
- $subGroupId = $subGroupData[0];
- $subGroupLabel = isset($subGroupData[1]) ? $subGroupData[1] : '';
- if (!empty($subGroupId) && !in_array($subGroupId, $subGroups)) {
- $subGroups[$subGroupId]['items'][] = $vertex->getId();
- $subGroups[$subGroupId]['label'] = $subGroupLabel;
- }
- $list[$column]['rows'][$row]['items'][] = $vertex;
- $list[$column]['rows'][$row]['label'] = $subGroupId;
- $list[$column]['rows'][$row]['group'] = $group;
- $list[$column]['rows'][$row]['group_label'] = $groupLabel;
- $list[$column]['rows'][$row]['subgroup'] = $subGroup;
- $list[$column]['rows'][$row]['subgroup_label'] = $subGroupLabel;
- $list[$column]['label'] = $groupLabel;
- $list[$column]['column'] = $column;
- }
- $groupCourseList = [];
- $simpleConnectionList = [];
- // Read Connections column
- foreach ($list as $column => $groupList) {
- foreach ($groupList['rows'] as $subGroupList) {
- /** @var Vertex $vertex */
- foreach ($subGroupList['items'] as $vertex) {
- if ($vertex instanceof Vertex) {
- $groupCourseList[$vertex->getAttribute('Column')][] = $vertex->getId();
- $connectionList = $vertex->getAttribute('Connections');
- if (empty($connectionList)) {
- continue;
- }
- $simpleFirstConnection = '';
- $simpleSecondConnection = '';
- $explode = explode('-', $connectionList);
- $pos = strpos($explode[0], 'SG');
- if ($pos === false) {
- $pos = strpos($explode[0], 'G');
- if (is_numeric($pos)) {
- // Is group
- $groupValueId = (int) str_replace(
- 'G',
- '',
- $explode[0]
- );
- $simpleFirstConnection = 'g'.(int) $groupValueId;
- } else {
- // Course block (row_123 id)
- if (!empty($explode[0])) {
- $simpleFirstConnection = 'v'.$explode[0];
- }
- }
- } else {
- // subgroup__123 id
- $simpleFirstConnection = 'sg'.(int) str_replace('SG', '', $explode[0]);
- }
- $pos = false;
- if (isset($explode[1])) {
- $pos = strpos($explode[1], 'SG');
- }
- if ($pos === false) {
- if (isset($explode[1])) {
- $pos = strpos($explode[1], 'G');
- $value = $explode[1];
- }
- if (is_numeric($pos)) {
- $groupValueId = (int) str_replace(
- 'G',
- '',
- $value
- );
- $simpleSecondConnection = 'g'.(int) $groupValueId;
- } else {
- // Course block (row_123 id)
- if (!empty($explode[0]) && isset($explode[1])) {
- $simpleSecondConnection = 'v'.(int) $explode[1];
- }
- }
- } else {
- $simpleSecondConnection = 'sg'.(int) str_replace('SG', '', $explode[1]);
- }
- if (!empty($simpleFirstConnection) && !empty($simpleSecondConnection)) {
- $simpleConnectionList[] = [
- 'from' => $simpleFirstConnection,
- 'to' => $simpleSecondConnection,
- ];
- }
- }
- }
- }
- }
- $graphHtml = '';
- $groupsBetweenColumns = [];
- foreach ($list as $column => $columnList) {
- foreach ($columnList['rows'] as $subGroupList) {
- $newGroup = $subGroupList['group'];
- $label = $subGroupList['group_label'];
- $newOrder[$newGroup]['items'][] = $subGroupList;
- $newOrder[$newGroup]['label'] = $label;
- $groupsBetweenColumns[$newGroup][] = $subGroupList;
- }
- }
- // Creates graph
- $graph = new stdClass();
- $graph->blockWidth = 280;
- $graph->blockHeight = 150;
- $graph->xGap = 70;
- $graph->yGap = 55;
- $graph->xDiff = 70;
- $graph->yDiff = 55;
- if (!empty($userResult)) {
- $graph->blockHeight = 180;
- $graph->yGap = 60;
- $graph->yDiff = 60;
- }
- foreach ($groupsBetweenColumns as $group => $items) {
- self::parseColumnList($groupCourseList, $items, $graph, $simpleConnectionList, $userResult);
- }
- $graphHtml .= '<style>
- .panel-title {
- font-size: 11px;
- height: 40px;
- }
- </style>';
- // Create groups
- if (!empty($graph->groupList)) {
- $groupList = [];
- $groupDiffX = 20;
- $groupDiffY = 50;
- $style = 'whiteSpace=wrap;rounded;html=1;strokeColor=red;fillColor=none;strokeWidth=2;align=left;verticalAlign=top;';
- foreach ($graph->groupList as $id => $data) {
- if (empty($id)) {
- continue;
- }
- $x = $data['min_x'] - $groupDiffX;
- $y = $data['min_y'] - $groupDiffY;
- $width = $data['max_width'] + ($groupDiffX * 2);
- $height = $data['max_height'] + $groupDiffY * 2;
- $label = '<h4>'.$data['label'].'</h4>';
- $vertexData = "var g$id = graph.insertVertex(parent, null, '$label', $x, $y, $width, $height, '$style');";
- $groupList[] = $vertexData;
- }
- $tpl->assign('group_list', $groupList);
- }
- // Create subgroups
- $subGroupList = [];
- $subGroupListData = [];
- foreach ($subGroups as $subGroupId => $vertexData) {
- $label = $vertexData['label'];
- $vertexIdList = $vertexData['items'];
- foreach ($vertexIdList as $rowId) {
- $data = $graph->allData[$rowId];
- $originalRow = $data['row'];
- $column = $data['column'];
- $x = $data['x'];
- $y = $data['y'];
- $width = $data['width'];
- $height = $data['height'];
- if (!isset($subGroupListData[$subGroupId])) {
- $subGroupListData[$subGroupId]['min_x'] = 1000;
- $subGroupListData[$subGroupId]['min_y'] = 1000;
- $subGroupListData[$subGroupId]['max_width'] = 0;
- $subGroupListData[$subGroupId]['max_height'] = 0;
- $subGroupListData[$subGroupId]['label'] = $label;
- }
- if ($x < $subGroupListData[$subGroupId]['min_x']) {
- $subGroupListData[$subGroupId]['min_x'] = $x;
- }
- if ($y < $subGroupListData[$subGroupId]['min_y']) {
- $subGroupListData[$subGroupId]['min_y'] = $y;
- }
- $subGroupListData[$subGroupId]['max_width'] = ($column + 1) * ($width + $graph->xGap) - $subGroupListData[$subGroupId]['min_x'];
- $subGroupListData[$subGroupId]['max_height'] = ($originalRow + 1) * ($height + $graph->yGap) - $subGroupListData[$subGroupId]['min_y'];
- }
- $style = 'whiteSpace=wrap;rounded;dashed=1;strokeColor=blue;fillColor=none;strokeWidth=2;align=left;verticalAlign=bottom;';
- $subGroupDiffX = 5;
- foreach ($subGroupListData as $subGroupId => $data) {
- $x = $data['min_x'] - $subGroupDiffX;
- $y = $data['min_y'] - $subGroupDiffX;
- $spaceForSubGroupTitle = 0;
- if (!empty($data['label'])) {
- $spaceForSubGroupTitle = 40;
- }
- $width = $data['max_width'] + $subGroupDiffX * 2;
- $height = $data['max_height'] + $subGroupDiffX * 2 + $spaceForSubGroupTitle;
- $label = '<h4 style="background: white">'.$data['label'].'</h4>';
- $vertexData = "var sg$subGroupId = graph.insertVertex(parent, null, '$label', $x, $y, $width, $height, '$style');";
- $subGroupList[] = $vertexData;
- }
- }
- // Create connections (arrows)
- if (!empty($simpleConnectionList)) {
- $connectionList = [];
- //$style = 'endArrow=classic;html=1;strokeWidth=4;exitX=1;exitY=0.5;entryX=0;entryY=0.5;';
- $style = '';
- foreach ($simpleConnectionList as $connection) {
- $from = $connection['from'];
- $to = $connection['to'];
- $vertexData = "var e1 = graph.insertEdge(parent, null, '', $from, $to, '$style')";
- $connectionList[] = $vertexData;
- }
- $tpl->assign('connections', $connectionList);
- }
- $tpl->assign('subgroup_list', $subGroupList);
- $tpl->assign('vertex_list', $graph->elementList);
- $graphHtml .= '<div id="graphContainer"></div>';
- return $graphHtml;
- }
- /**
- * @param $groupCourseList
- * @param $columnList
- * @param $graph
- * @param $connections
- * @param $userResult
- *
- * @return string
- */
- public static function parseColumnList($groupCourseList, $columnList, &$graph, &$connections, $userResult)
- {
- $graphHtml = '';
- $oldGroup = null;
- $newOrder = [];
- foreach ($columnList as $key => $subGroupList) {
- $newGroup = $subGroupList['group'];
- $label = $subGroupList['group_label'];
- $newOrder[$newGroup]['items'][] = $subGroupList;
- $newOrder[$newGroup]['label'] = $label;
- }
- foreach ($newOrder as $newGroup => $data) {
- $label = $data['label'];
- $subGroupList = $data['items'];
- if (!isset($graph->groupList[$newGroup])) {
- $graph->groupList[$newGroup]['min_x'] = 1000;
- $graph->groupList[$newGroup]['min_y'] = 1000;
- $graph->groupList[$newGroup]['max_width'] = 0;
- $graph->groupList[$newGroup]['max_height'] = 0;
- $graph->groupList[$newGroup]['label'] = $label;
- }
- $maxColumn = 0;
- $maxRow = 0;
- $minColumn = 100;
- $minRow = 100;
- foreach ($subGroupList as $item) {
- /** @var Vertex $vertex */
- foreach ($item['items'] as $vertex) {
- $column = $vertex->getAttribute('Column');
- $realRow = $vertex->getAttribute('Row');
- if ($column > $maxColumn) {
- $maxColumn = $column;
- }
- if ($realRow > $maxRow) {
- $maxRow = $realRow;
- }
- if ($column < $minColumn) {
- $minColumn = $column;
- }
- if ($realRow < $minRow) {
- $minRow = $realRow;
- }
- }
- }
- if (!empty($newGroup)) {
- $graphHtml .= '<div
- id ="group_'.$newGroup.'"
- class="group'.$newGroup.' group_class"
- style="display:grid;
- align-self: start;
- grid-gap: 10px;
- justify-items: stretch;
- align-items: start;
- align-content: start;
- justify-content: stretch;
- grid-area:'.$minRow.'/'.$minColumn.'/'.$maxRow.'/'.$maxColumn.'">'; //style="display:grid"
- }
- $addRow = 0;
- if (!empty($label)) {
- $graphHtml .= "<div class='my_label' style='grid-area:$minRow/$minColumn/$maxRow/$maxColumn'>$label</div>";
- $addRow = 1;
- }
- foreach ($subGroupList as $item) {
- $graphHtml .= self::parseVertexList(
- $groupCourseList,
- $item['items'],
- $addRow,
- $graph,
- $newGroup,
- $connections,
- $userResult
- );
- }
- if (!empty($newGroup)) {
- $graphHtml .= '</div >';
- }
- }
- return $graphHtml;
- }
- /**
- * @param array $groupCourseList
- * @param array $vertexList
- * @param int $addRow
- * @param stdClass $graph
- * @param int $group
- * @param array $connections
- * @param array $userResult
- *
- * @return string
- */
- public static function parseVertexList($groupCourseList, $vertexList, $addRow = 0, &$graph, $group, &$connections, $userResult)
- {
- if (empty($vertexList)) {
- return '';
- }
- $graphHtml = '';
- /** @var Vertex $vertex */
- foreach ($vertexList as $vertex) {
- $column = $vertex->getAttribute('Column');
- $realRow = $originalRow = $vertex->getAttribute('Row');
- if ($addRow) {
- $realRow = $realRow + $addRow;
- }
- $id = $vertex->getId();
- $area = "$realRow/$column";
- $graphHtml .= '<div
- id = "row_wrapper_'.$id.'"
- data= "'.$originalRow.'-'.$column.'"
- style="
- align-self: start;
- justify-content: stretch;
- grid-area:'.$area.'"
- >';
- $color = '';
- if (!empty($vertex->getAttribute('DefinedColor'))) {
- $color = $vertex->getAttribute('DefinedColor');
- }
- $content = '<div class="pull-left">'.$vertex->getAttribute('Notes').'</div>';
- $content .= '<div class="pull-right">['.$id.']</div>';
- if (!empty($userResult) && isset($userResult[$id])) {
- $results = '';
- $size = 2;
- foreach ($userResult[$id] as $resultId => $iconData) {
- $icon = '';
- switch ($iconData['Icon']) {
- case 0:
- $icon = Display::returnFontAwesomeIcon('times-circle', $size);
- break;
- case 1:
- $icon = Display::returnFontAwesomeIcon('check-circle', $size);
- break;
- case 2:
- $icon = Display::returnFontAwesomeIcon('info-circle', $size);
- break;
- }
- if (substr($resultId, 0, 1) == 2) {
- $iconData['Description'] = 'Result Id = '.$resultId;
- }
- if (!empty($icon)) {
- $params = [
- 'id' => 'course_'.$id.'_'.$resultId,
- 'data-toggle' => 'popover',
- 'title' => 'Popover title',
- 'class' => 'popup',
- 'data-description' => $iconData['Description'],
- 'data-period' => $iconData['Period'],
- 'data-teacher-text' => $iconData['TeacherText'],
- 'data-teacher' => $iconData['TeacherUsername'],
- 'data-score' => $iconData['ScoreText'],
- 'data-score-value' => $iconData['ScoreValue'],
- 'data-info' => $iconData['Info'],
- 'data-background-color' => $iconData['BgColor'],
- 'data-color' => $iconData['Color'],
- 'data-border-color' => $iconData['BorderColor'],
- 'style' => 'color:'.$iconData['IconColor'],
- ];
- $results .= Display::url($icon, 'javascript:void(0);', $params);
- }
- }
- if (!empty($results)) {
- $content .= '<div class="row"></div><div class="pull-right">'.$results.'</div>';
- }
- }
- $title = $vertex->getAttribute('graphviz.label');
- if (!empty($vertex->getAttribute('LinkedElement'))) {
- $title = Display::url($title, $vertex->getAttribute('LinkedElement'));
- }
- $originalRow--;
- $column--;
- //$title = "$originalRow / $column";
- $graphHtml .= Display::panel(
- $content,
- $title,
- null,
- null,
- null,
- "row_$id",
- $color
- );
- $panel = Display::panel(
- $content,
- $title,
- null,
- null,
- null,
- "row_$id",
- $color
- );
- $x = $column * $graph->blockWidth + $graph->xDiff;
- $y = $originalRow * $graph->blockHeight + $graph->yDiff;
- $width = $graph->blockWidth - $graph->xGap;
- $height = $graph->blockHeight - $graph->yGap;
- $style = 'text;html=1;strokeColor=green;fillColor=#ffffff;overflow=fill;rounded=0;align=left;';
- $panel = str_replace(["\n", "\r"], '', $panel);
- $vertexData = "var v$id = graph.insertVertex(parent, null, '".addslashes($panel)."', $x, $y, $width, $height, '$style');";
- $graph->elementList[$id] = $vertexData;
- $graph->allData[$id] = [
- 'x' => $x,
- 'y' => $y,
- 'width' => $width,
- 'height' => $height,
- 'row' => $originalRow,
- 'column' => $column,
- 'label' => $title,
- ];
- if ($x < $graph->groupList[$group]['min_x']) {
- $graph->groupList[$group]['min_x'] = $x;
- }
- if ($y < $graph->groupList[$group]['min_y']) {
- $graph->groupList[$group]['min_y'] = $y;
- }
- $graph->groupList[$group]['max_width'] = ($column + 1) * ($width + $graph->xGap) - $graph->groupList[$group]['min_x'];
- $graph->groupList[$group]['max_height'] = ($originalRow + 1) * ($height + ($graph->yGap)) - $graph->groupList[$group]['min_y'];
- $graphHtml .= '</div>';
- $arrow = $vertex->getAttribute('DrawArrowFrom');
- $found = false;
- if (!empty($arrow)) {
- $pos = strpos($arrow, 'SG');
- if ($pos === false) {
- $pos = strpos($arrow, 'G');
- if (is_numeric($pos)) {
- $parts = explode('G', $arrow);
- if (empty($parts[0]) && count($parts) == 2) {
- $groupArrow = $parts[1];
- $graphHtml .= self::createConnection(
- "group_$groupArrow",
- "row_$id",
- ['Left', 'Right']
- );
- $found = true;
- $connections[] = [
- 'from' => "g$groupArrow",
- 'to' => "v$id",
- ];
- }
- }
- } else {
- // Case is only one subgroup value example: SG1
- $parts = explode('SG', $arrow);
- if (empty($parts[0]) && count($parts) == 2) {
- $subGroupArrow = $parts[1];
- $graphHtml .= self::createConnection(
- "subgroup_$subGroupArrow",
- "row_$id",
- ['Left', 'Right']
- );
- $found = true;
- $connections[] = [
- 'from' => "sg$subGroupArrow",
- 'to' => "v$id",
- ];
- }
- }
- if ($found == false) {
- // case is connected to 2 subgroups: Example SG1-SG2
- $parts = explode('-', $arrow);
- if (count($parts) == 2 && !empty($parts[0]) && !empty($parts[1])) {
- $defaultArrow = ['Top', 'Bottom'];
- $firstPrefix = '';
- $firstId = '';
- $secondId = '';
- $secondPrefix = '';
- if (is_numeric($pos = strpos($parts[0], 'SG'))) {
- $firstPrefix = 'sg';
- $firstId = str_replace('SG', '', $parts[0]);
- }
- if (is_numeric($pos = strpos($parts[1], 'SG'))) {
- $secondPrefix = 'sg';
- $secondId = str_replace('SG', '', $parts[1]);
- }
- if (!empty($secondId) && !empty($firstId)) {
- $connections[] = [
- 'from' => $firstPrefix.$firstId,
- 'to' => $secondPrefix.$secondId,
- $defaultArrow,
- ];
- $found = true;
- }
- }
- }
- if ($found == false) {
- // case DrawArrowFrom is an integer
- $defaultArrow = ['Left', 'Right'];
- if (isset($groupCourseList[$column]) &&
- in_array($arrow, $groupCourseList[$column])
- ) {
- $defaultArrow = ['Top', 'Bottom'];
- }
- $graphHtml .= self::createConnection(
- "row_$arrow",
- "row_$id",
- $defaultArrow
- );
- $connections[] = [
- 'from' => "v$arrow",
- 'to' => "v$id",
- ];
- }
- }
- }
- return $graphHtml;
- }
- /**
- * @param array $groupCourseList list of groups and their courses
- * @param int $group
- * @param string $groupLabel
- * @param bool $showGroupLine
- * @param array $subGroupList
- * @param $widthGroup
- *
- * @return string
- */
- public static function parseSubGroups(
- $groupCourseList,
- $group,
- $groupLabel,
- $showGroupLine,
- $subGroupList,
- $widthGroup
- ) {
- $topValue = 90;
- $defaultSpace = 40;
- $leftGroup = $defaultSpace.'px';
- if ($group == 1) {
- $leftGroup = 0;
- }
- $groupIdTag = "group_$group";
- $borderLine = $showGroupLine === true ? 'border-style:solid;' : '';
- $graphHtml = '<div
- id="'.$groupIdTag.'" class="career_group"
- style=" '.$borderLine.' padding:15px; float:left; margin-left:'.$leftGroup.'; width:'.$widthGroup.'%">';
- if (!empty($groupLabel)) {
- $graphHtml .= '<h3>'.$groupLabel.'</h3>';
- }
- foreach ($subGroupList as $subGroup => $subGroupData) {
- $subGroupLabel = isset($subGroupData['label']) ? $subGroupData['label'] : '';
- $columnList = isset($subGroupData['columns']) ? $subGroupData['columns'] : [];
- if (empty($columnList)) {
- continue;
- }
- $line = '';
- if (!empty($subGroup)) {
- $line = 'border-style:solid;';
- }
- // padding:15px;
- $graphHtml .= '<div
- id="subgroup_'.$subGroup.'" class="career_subgroup"
- style="'.$line.' margin-bottom:20px; padding:15px; float:left; margin-left:0px; width:100%">';
- if (!empty($subGroupLabel)) {
- $graphHtml .= '<h3>'.$subGroupLabel.'</h3>';
- }
- foreach ($columnList as $column => $rows) {
- $leftColumn = $defaultSpace.'px';
- if ($column == 1) {
- $leftColumn = 0;
- }
- if (count($columnList) == 1) {
- $leftColumn = 0;
- }
- $widthColumn = 85 / count($columnList);
- $graphHtml .= '<div
- id="col_'.$column.'" class="career_column"
- style="padding:15px;float:left; margin-left:'.$leftColumn.'; width:'.$widthColumn.'%">';
- $maxRow = 0;
- foreach ($rows as $row => $vertex) {
- if ($row > $maxRow) {
- $maxRow = $row;
- }
- }
- $newRowList = [];
- $defaultSubGroup = -1;
- $subGroupCountList = [];
- for ($i = 0; $i < $maxRow; $i++) {
- /** @var Vertex $vertex */
- $vertex = isset($rows[$i + 1]) ? $rows[$i + 1] : null;
- if (!is_null($vertex)) {
- $subGroup = $vertex->getAttribute('SubGroup');
- if ($subGroup == '' || empty($subGroup)) {
- $defaultSubGroup = 0;
- } else {
- $defaultSubGroup = (int) $subGroup;
- }
- }
- $newRowList[$i + 1][$defaultSubGroup][] = $vertex;
- if (!isset($subGroupCountList[$defaultSubGroup])) {
- $subGroupCountList[$defaultSubGroup] = 1;
- } else {
- $subGroupCountList[$defaultSubGroup]++;
- }
- }
- $subGroup = null;
- $subGroupAdded = [];
- /** @var Vertex $vertex */
- foreach ($newRowList as $row => $subGroupList) {
- foreach ($subGroupList as $subGroup => $vertexList) {
- if (!empty($subGroup) && $subGroup != -1) {
- if (!isset($subGroupAdded[$subGroup])) {
- $subGroupAdded[$subGroup] = 1;
- } else {
- $subGroupAdded[$subGroup]++;
- }
- }
- foreach ($vertexList as $vertex) {
- if (is_null($vertex)) {
- $graphHtml .= '<div class="career_empty" style="height: 130px">';
- $graphHtml .= '</div>';
- continue;
- }
- $id = $vertex->getId();
- $rowId = "row_$row";
- $graphHtml .= '<div id = "row_'.$id.'" class="'.$rowId.' career_row" >';
- $color = '';
- if (!empty($vertex->getAttribute('DefinedColor'))) {
- $color = $vertex->getAttribute('DefinedColor');
- }
- $content = $vertex->getAttribute('Notes');
- $content .= '<div class="pull-right">['.$id.']</div>';
- $title = $vertex->getAttribute('graphviz.label');
- if (!empty($vertex->getAttribute('LinkedElement'))) {
- $title = Display::url($title, $vertex->getAttribute('LinkedElement'));
- }
- $graphHtml .= Display::panel(
- $content,
- $title,
- null,
- null,
- null,
- null,
- $color
- );
- $graphHtml .= '</div>';
- $arrow = $vertex->getAttribute('DrawArrowFrom');
- $found = false;
- if (!empty($arrow)) {
- $pos = strpos($arrow, 'SG');
- if ($pos === false) {
- $pos = strpos($arrow, 'G');
- if (is_numeric($pos)) {
- $parts = explode('G', $arrow);
- if (empty($parts[0]) && count($parts) == 2) {
- $groupArrow = $parts[1];
- $graphHtml .= self::createConnection(
- "group_$groupArrow",
- "row_$id",
- ['Left', 'Right']
- );
- $found = true;
- }
- }
- } else {
- $parts = explode('SG', $arrow);
- if (empty($parts[0]) && count($parts) == 2) {
- $subGroupArrow = $parts[1];
- $graphHtml .= self::createConnection(
- "subgroup_$subGroupArrow",
- "row_$id",
- ['Left', 'Right']
- );
- $found = true;
- }
- }
- }
- if ($found == false) {
- $defaultArrow = ['Left', 'Right'];
- if (isset($groupCourseList[$group]) &&
- in_array($arrow, $groupCourseList[$group])
- ) {
- $defaultArrow = ['Top', 'Bottom'];
- }
- $graphHtml .= self::createConnection(
- "row_$arrow",
- "row_$id",
- $defaultArrow
- );
- }
- }
- }
- }
- $graphHtml .= '</div>';
- }
- $graphHtml .= '</div>';
- }
- $graphHtml .= '</div>';
- return $graphHtml;
- }
- /**
- * @param string $source
- * @param string $target
- * @param array $anchor
- *
- * @return string
- */
- public static function createConnection($source, $target, $anchor = [])
- {
- if (empty($anchor)) {
- // Default
- $anchor = ['Bottom', 'Right'];
- }
- $anchor = implode('","', $anchor);
- $html = '<script>
- var connectorPaintStyle = {
- strokeWidth: 2,
- stroke: "#a31ed3",
- joinstyle: "round",
- outlineStroke: "white",
- outlineWidth: 2
- },
- // .. and this is the hover style.
- connectorHoverStyle = {
- strokeWidth: 3,
- stroke: "#216477",
- outlineWidth: 5,
- outlineStroke: "white"
- },
- endpointHoverStyle = {
- fill: "#E80CAF",
- stroke: "#E80CAF"
- };
- jsPlumb.ready(function() { ';
- $html .= 'jsPlumb.connect({
- source:"'.$source.'",
- target:"'.$target.'",
- endpoint:[ "Rectangle", { width:1, height:1 }],
- connector: ["Flowchart"],
- paintStyle: connectorPaintStyle,
- hoverPaintStyle: endpointHoverStyle,
- anchor: ["'.$anchor.'"],
- overlays: [
- [
- "Arrow",
- {
- location:1,
- width:11,
- length:11
- }
- ],
- ],
- });';
- $html .= '});</script>'.PHP_EOL;
- return $html;
- }
- }
|