mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
change easyinstall update language
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9077 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
67469dce93
commit
7f9777e3c7
6 changed files with 23 additions and 15 deletions
|
|
@ -33,7 +33,18 @@
|
|||
|
||||
$module_list = $oModuleModel->getModuleList();
|
||||
foreach($module_list as $key => $val) {
|
||||
$val->delete_url = $oAutoinstallModel->getRemoveUrlByPath($val->path);
|
||||
$module_list[$key]->delete_url = $oAutoinstallModel->getRemoveUrlByPath($val->path);
|
||||
|
||||
// get easyinstall need update
|
||||
$packageSrl = $oAutoinstallModel->getPackageSrlByPath($val->path);
|
||||
$package = $oAutoinstallModel->getInstalledPackages($packageSrl);
|
||||
$module_list[$key]->need_autoinstall_update = $package[$packageSrl]->need_update;
|
||||
|
||||
// get easyinstall update url
|
||||
if ($module_list[$key]->need_autoinstall_update)
|
||||
{
|
||||
$module_list[$key]->update_url = $oAutoinstallModel->getUpdateUrlByPackageSrl($packageSrl);
|
||||
}
|
||||
}
|
||||
|
||||
$output = $oAdminModel->getFavoriteList('0');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue