Skip to content

Commit

Permalink
Add mapping for helpdesk && socialsuite packages
Browse files Browse the repository at this point in the history
  • Loading branch information
0m3r committed Oct 27, 2017
1 parent a6c4039 commit 1b0d5df
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,8 @@ public function _packageNameToCode($packageName)
'tm/smartsuggest' => 'TM_SmartSuggest',
'tm/suggestpage' => 'TM_SuggestPage',
'tm/demo-deployer' => 'TM_Deployer',
'tm/helpdesk' => 'TM_Helpmate',
'tm/socialsuite' => 'TM_SocialSuite',
);

if (isset($mapping[$packageName])) {
Expand All @@ -200,7 +202,7 @@ public function _packageNameToCode($packageName)
$module = ucwords(str_replace(array('_', '-'), ' ', $module));
$module = str_replace(' ', '', $module);

return $vendor . '_' . $module;;
return $vendor . '_' . $module;
}

/**
Expand Down

0 comments on commit 1b0d5df

Please sign in to comment.