Ajout de la fonctionnalité d'upload de module.
This commit is contained in:
@@ -1,18 +1,3 @@
|
||||
<?
|
||||
|
||||
$xmla = simplexml_load_file('../db/todoist.xml');
|
||||
|
||||
if($xmla->token== '' || $xmla->token == null)
|
||||
|
||||
header('Location: install-todoist.php');
|
||||
|
||||
if($xmla->name == '' || $xmla->name == null):?>
|
||||
|
||||
<html>
|
||||
|
||||
<head>
|
||||
|
||||
<style>
|
||||
.selectableProject{text-decoration:underline; color:blue; cursor:pointer;}
|
||||
</style>
|
||||
<title>Todoist : getProjects</title>
|
||||
<?
|
||||
$xmla = simplexml_load_file('../db/todoist.xml');
|
||||
if($xmla->token== '' || $xmla->token == null)
|
@@ -1,7 +1,7 @@
|
||||
<?
|
||||
|
||||
$xmla = simplexml_load_file('../db/todoist.xml');
|
||||
|
||||
|
||||
if($xmla->token== '' || $xmla->token == null)
|
||||
|
||||
header('Location: install-todoist.php');
|
||||
|
@@ -1,56 +1,9 @@
|
||||
<?header('Content-type: application/javascript');
|
||||
$token = $_GET['token'];
|
||||
$id = $_GET['id'];
|
||||
?>
|
||||
|
||||
function cbfunc(o){
|
||||
|
||||
$('#results').append('<ul id="uncompletedList"><ul>');
|
||||
|
||||
for(var i in o)
|
||||
|
||||
{
|
||||
|
||||
$('#uncompletedList').append('<li id="'+o[i].id+'">'+o[i].content+' - '+o[i].date_string+' <img src="images/interface/delete.png" class="deleteTask" id="delete-'+o[i].id+'"/> <img src="images/interface/complete.png" class="completeTask" id="complete-'+o[i].id+'"/> </li>');
|
||||
|
||||
}
|
||||
|
||||
$('#uncompletedList li').prepend('<div class="puce"></div>');
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
function cbfunc2(o){
|
||||
|
||||
$('#uncompletedList').append('<li id="'+o.id+'">'+o.content+' - '+o.date_string+' <img src="images/interface/delete.png" id="delete-'+o.id+'"/> <img src="images/interface/complete.png" class="completeTask" id="complete-'+o.id+'"/> </li>');
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
$(document).ready(function(){
|
||||
$('#todo').resizable();
|
||||
$('#todo').draggable();
|
||||
$('#todo').append('<div id="results"></div><img src="images/interface/add.png" id="showNewTask"/><fieldset id="newTaskFieldset" style="display:none; width:200px;"><input type="text" name="newtask" id="newtask"/> <select id="priority"><option id="1" value="1">1</option><option id="2" value="2">2</option><option id="3" value="3">3</option><option id="4" value="4">4</option></select> <br/><input type="text" name="date_string" id="date_string"/> <img src="images/interface/add.png" id="addTask"/></fieldset>');
|
||||
|
||||
var token = "<?=$token?>";
|
||||
|
||||
var project_id = "<?=$id?>";
|
||||
|
||||
var script = document.createElement('script');
|
||||
|
||||
script.type = 'text/javascript';
|
||||
|
||||
script.src = 'https://todoist.com/API/getUncompletedItems?project_id='+project_id+'&token='+token+'&format=json&callback=cbfunc';
|
||||
|
||||
document.getElementsByTagName('head')[0].appendChild(script);
|
||||
|
||||
|
||||
|
||||
$('#showNewTask').click(function(){
|
||||
|
||||
$('#newTaskFieldset').toggle();
|
||||
|
||||
});
|
||||
$token = $_GET['token'];
|
||||
$id = $_GET['id'];
|
||||
?>
|
||||
|
||||
function cbfunc(o){
|
||||
$('#results').append('<ul id="uncompletedList"><ul>');
|
||||
for(var i in o)
|
||||
{
|
@@ -1,21 +1,4 @@
|
||||
function cbfunc(o){
|
||||
|
||||
var token = o.api_token;
|
||||
|
||||
if(token == undefined){
|
||||
|
||||
function cbfunc(o){
|
||||
var token = o.api_token;
|
||||
|
||||
}else{
|
||||
|
||||
$.post('../ajax/saveTodoist.php', {token: token}, function(data){
|
||||
$('body').append('<a href="getProjectsList.php">Etape suivante</a>');
|
||||
if(data=="ok"){
|
||||
location.reload();
|
||||
}else{
|
||||
alert(data);
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
if(token == undefined){
|
||||
$('#error').html('Identification erronnée');
|
Reference in New Issue
Block a user