Browse Source

Move and fix app setting navigation detect

remotes/origin/stable5
Bart Visscher 14 years ago
parent
commit
1bdd0c949b
  1. 4
      settings/ajax/navigationdetect.php
  2. 4
      settings/js/apps.js
  3. 2
      settings/routes.php

4
core/ajax/navigationdetect.php → settings/ajax/navigationdetect.php

@ -1,9 +1,5 @@
<?php
$RUNTIME_NOAPPS = true;
require_once '../../lib/base.php';
OC_Util::checkAdminUser();
OCP\JSON::callCheck();

4
settings/js/apps.js

@ -91,7 +91,7 @@ OC.Settings.Apps = OC.Settings.Apps || {
return app;
},
removeNavigation: function(appid){
$.getJSON(OC.filePath('core','ajax','navigationdetect.php'), {app: appid}).done(function(response){
$.getJSON(OC.filePath('settings', 'ajax', 'navigationdetect.php'), {app: appid}).done(function(response){
if(response.status === 'success'){
var navIds=response.nav_ids;
for(var i=0; i< navIds.length; i++){
@ -101,7 +101,7 @@ OC.Settings.Apps = OC.Settings.Apps || {
});
},
addNavigation: function(appid){
$.getJSON(OC.filePath('core','ajax','navigationdetect.php'), {app: appid}).done(function(response){
$.getJSON(OC.filePath('settings', 'ajax', 'navigationdetect.php'), {app: appid}).done(function(response){
if(response.status === 'success'){
var navEntries=response.nav_entries;
for(var i=0; i< navEntries.length; i++){

2
settings/routes.php

@ -51,6 +51,8 @@ $this->create('settings_ajax_enableapp', '/settings/ajax/enableapp.php')
->actionInclude('settings/ajax/enableapp.php');
$this->create('settings_ajax_disableapp', '/settings/ajax/disableapp.php')
->actionInclude('settings/ajax/disableapp.php');
$this->create('settings_ajax_navigationdetect', '/settings/ajax/navigationdetect.php')
->actionInclude('settings/ajax/navigationdetect.php');
// admin
$this->create('settings_ajax_getlog', '/settings/ajax/getlog.php')
->actionInclude('settings/ajax/getlog.php');

Loading…
Cancel
Save