Commit f6544e8b by Sebastián Katzer

All interfaces working except update() for iOS

parent 0fe90469
...@@ -39,41 +39,41 @@ ...@@ -39,41 +39,41 @@
- (void) schedule:(CDVInvokedUrlCommand*)command; - (void) schedule:(CDVInvokedUrlCommand*)command;
//// Update set of notifications //// Update set of notifications
//- (void) update:(CDVInvokedUrlCommand*)command; //- (void) update:(CDVInvokedUrlCommand*)command;
//// Cancel set of notifications // Clear notifications by id
//- (void) cancel:(CDVInvokedUrlCommand*)command; - (void) clear:(CDVInvokedUrlCommand*)command;
//// Cancel all notifications // Clear all notifications
//- (void) cancelAll:(CDVInvokedUrlCommand*)command; - (void) clearAll:(CDVInvokedUrlCommand*)command;
//// Clear set of notifications // Cancel notifications by id
//- (void) clear:(CDVInvokedUrlCommand*)command; - (void) cancel:(CDVInvokedUrlCommand*)command;
//// Clear all notifications // Cancel all notifications
//- (void) clearAll:(CDVInvokedUrlCommand*)command; - (void) cancelAll:(CDVInvokedUrlCommand*)command;
//
//// If a notification with an ID is present // If a notification with an ID is present
//- (void) isPresent:(CDVInvokedUrlCommand*)command; - (void) isPresent:(CDVInvokedUrlCommand*)command;
//// If a notification with an ID is scheduled // If a notification with an ID is scheduled
//- (void) isScheduled:(CDVInvokedUrlCommand*)command; - (void) isScheduled:(CDVInvokedUrlCommand*)command;
//// If a notification with an ID is triggered // If a notification with an ID is triggered
//- (void) isTriggered:(CDVInvokedUrlCommand*)command; - (void) isTriggered:(CDVInvokedUrlCommand*)command;
//
//// List all ids from all local notifications // List of all notification IDs
//- (void) getAllIds:(CDVInvokedUrlCommand*)command; - (void) ids:(CDVInvokedUrlCommand*)command;
//// List all ids from all pending notifications // List of all scheduled notification IDs
//- (void) getScheduledIds:(CDVInvokedUrlCommand*)command; - (void) scheduledIds:(CDVInvokedUrlCommand*)command;
//// List all ids from all triggered notifications // List of all triggered notification IDs
//- (void) getTriggeredIds:(CDVInvokedUrlCommand*)command; - (void) triggeredIds:(CDVInvokedUrlCommand*)command;
//
//// Propertys for given local notification // Notification by id
//- (void) getSingle:(CDVInvokedUrlCommand*)command; - (void) notification:(CDVInvokedUrlCommand*)command;
//// Propertya for given scheduled notification // Scheduled notification by id
//- (void) getSingleScheduled:(CDVInvokedUrlCommand*)command; - (void) scheduledNotification:(CDVInvokedUrlCommand*)command;
//// Propertys for given triggered notification // Triggered notification by id
//- (void) getSingleTriggered:(CDVInvokedUrlCommand*)command; - (void) triggeredNotification:(CDVInvokedUrlCommand*)command;
//
//// Property list for given local notifications // List of notifications by id
//- (void) getAll:(CDVInvokedUrlCommand*)command; - (void) notifications:(CDVInvokedUrlCommand*)command;
//// Property list for given scheduled notifications // List of scheduled notifications by id
//- (void) getScheduled:(CDVInvokedUrlCommand*)command; - (void) scheduledNotifications:(CDVInvokedUrlCommand*)command;
//// Property list for given triggered notifications // List of triggered notifications by id
//- (void) getTriggered:(CDVInvokedUrlCommand*)command; - (void) triggeredNotifications:(CDVInvokedUrlCommand*)command;
@end @end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment