Release of v3.2.3-beta4
Add native plugin builder for Joomla 4 & 5.
This commit is contained in:
@ -1068,10 +1068,12 @@ function addButton(type, where, size){
|
||||
})
|
||||
}
|
||||
|
||||
function getLinked(){
|
||||
function getLinked() {
|
||||
getCodeFrom_server(1, 'type', 'type', 'getLinked').then(function(result) {
|
||||
if(result){
|
||||
jQuery('#display_linked_to').html(result);
|
||||
if (result.error) {
|
||||
console.error(result.error);
|
||||
} else if (result) {
|
||||
document.getElementById('display_linked_to').innerHTML = result;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -230,10 +230,12 @@ function getCodeFrom_server(id, type, type_name, callingName) {
|
||||
});
|
||||
}
|
||||
|
||||
function getLinked(){
|
||||
function getLinked() {
|
||||
getCodeFrom_server(1, 'type', 'type', 'getLinked').then(function(result) {
|
||||
if(result){
|
||||
jQuery('#display_linked_to').html(result);
|
||||
if (result.error) {
|
||||
console.error(result.error);
|
||||
} else if (result) {
|
||||
document.getElementById('display_linked_to').innerHTML = result;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -1659,10 +1659,12 @@ function getEditCustomCodeButtons() {
|
||||
});
|
||||
}
|
||||
|
||||
function getLinked(){
|
||||
function getLinked() {
|
||||
getCodeFrom_server(1, 'type', 'type', 'getLinked').then(function(result) {
|
||||
if(result){
|
||||
jQuery('#display_linked_to').html(result);
|
||||
if (result.error) {
|
||||
console.error(result.error);
|
||||
} else if (result) {
|
||||
document.getElementById('display_linked_to').innerHTML = result;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -781,10 +781,12 @@ function getCodeFrom_server(id, type, type_name, callingName) {
|
||||
});
|
||||
}
|
||||
|
||||
function getLinked(){
|
||||
function getLinked() {
|
||||
getCodeFrom_server(1, 'type', 'type', 'getLinked').then(function(result) {
|
||||
if(result){
|
||||
jQuery('#display_linked_to').html(result);
|
||||
if (result.error) {
|
||||
console.error(result.error);
|
||||
} else if (result) {
|
||||
document.getElementById('display_linked_to').innerHTML = result;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -238,10 +238,12 @@ function setModuleCode() {
|
||||
});
|
||||
}
|
||||
|
||||
function getLinked(){
|
||||
function getLinked() {
|
||||
getCodeFrom_server(1, 'type', 'type', 'getLinked').then(function(result) {
|
||||
if(result){
|
||||
jQuery('#display_linked_to').html(result);
|
||||
if (result.error) {
|
||||
console.error(result.error);
|
||||
} else if (result) {
|
||||
document.getElementById('display_linked_to').innerHTML = result;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -700,10 +700,12 @@ function removeCodeFromEditor(code_string, editor_id){
|
||||
}
|
||||
|
||||
|
||||
function getLinked(){
|
||||
function getLinked() {
|
||||
getCodeFrom_server(1, 'type', 'type', 'getLinked').then(function(result) {
|
||||
if(result){
|
||||
jQuery('#display_linked_to').html(result);
|
||||
if (result.error) {
|
||||
console.error(result.error);
|
||||
} else if (result) {
|
||||
document.getElementById('display_linked_to').innerHTML = result;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -1013,10 +1013,12 @@ function addButton(type, where, size){
|
||||
})
|
||||
}
|
||||
|
||||
function getLinked(){
|
||||
function getLinked() {
|
||||
getCodeFrom_server(1, 'type', 'type', 'getLinked').then(function(result) {
|
||||
if(result){
|
||||
jQuery('#display_linked_to').html(result);
|
||||
if (result.error) {
|
||||
console.error(result.error);
|
||||
} else if (result) {
|
||||
document.getElementById('display_linked_to').innerHTML = result;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -464,10 +464,12 @@ function removeCodeFromEditor(code_string, editor_id){
|
||||
}
|
||||
|
||||
|
||||
function getLinked(){
|
||||
function getLinked() {
|
||||
getCodeFrom_server(1, 'type', 'type', 'getLinked').then(function(result) {
|
||||
if(result){
|
||||
jQuery('#display_linked_to').html(result);
|
||||
if (result.error) {
|
||||
console.error(result.error);
|
||||
} else if (result) {
|
||||
document.getElementById('display_linked_to').innerHTML = result;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -271,10 +271,12 @@ function getCodeFrom_server(id, type, type_name, callingName) {
|
||||
});
|
||||
}
|
||||
|
||||
function getLinked(){
|
||||
function getLinked() {
|
||||
getCodeFrom_server(1, 'type', 'type', 'getLinked').then(function(result) {
|
||||
if(result){
|
||||
jQuery('#display_linked_to').html(result);
|
||||
if (result.error) {
|
||||
console.error(result.error);
|
||||
} else if (result) {
|
||||
document.getElementById('display_linked_to').innerHTML = result;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user