Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
cordova-plugin-local-notifications
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nabil Sadki
cordova-plugin-local-notifications
Commits
f6544e8b
Commit
f6544e8b
authored
Jun 30, 2017
by
Sebastián Katzer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
All interfaces working except update() for iOS
parent
0fe90469
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
36 additions
and
36 deletions
+36
-36
APPLocalNotification.h
src/ios/APPLocalNotification.h
+36
-36
APPLocalNotification.m
src/ios/APPLocalNotification.m
+0
-0
local-notification-core.js
www/local-notification-core.js
+0
-0
local-notification.js
www/local-notification.js
+0
-0
No files found.
src/ios/APPLocalNotification.h
View file @
f6544e8b
...
...
@@ -39,41 +39,41 @@
-
(
void
)
schedule
:(
CDVInvokedUrlCommand
*
)
command
;
//// Update set of notifications
//- (void) update:(CDVInvokedUrlCommand*)command;
//
// Cancel set of notifications
//- (void) cancel
:(CDVInvokedUrlCommand*)command;
//
// Cancel
all notifications
//- (void) cancel
All:(CDVInvokedUrlCommand*)command;
//
// Clear set of notifications
//- (void) clear
:(CDVInvokedUrlCommand*)command;
//
// Clear
all notifications
//- (void) clear
All:(CDVInvokedUrlCommand*)command;
//
//
//
If a notification with an ID is present
//
- (void) isPresent:(CDVInvokedUrlCommand*)command;
//
//
If a notification with an ID is scheduled
//
- (void) isScheduled:(CDVInvokedUrlCommand*)command;
//
//
If a notification with an ID is triggered
//
- (void) isTriggered:(CDVInvokedUrlCommand*)command;
//
//
// List all ids from all local notification
s
//- (void) getAllI
ds:(CDVInvokedUrlCommand*)command;
//
// List all ids from all pending notification
s
//- (void) getS
cheduledIds:(CDVInvokedUrlCommand*)command;
//
// List all ids from all triggered notification
s
//- (void) getT
riggeredIds:(CDVInvokedUrlCommand*)command;
//
//
// Propertys for given local notification
//- (void) getSingle
:(CDVInvokedUrlCommand*)command;
//
// Propertya for given scheduled notification
//- (void) getSingleScheduled
:(CDVInvokedUrlCommand*)command;
//
// Propertys for given triggered notification
//- (void) getSingleTriggered
:(CDVInvokedUrlCommand*)command;
//
//
// Property list for given local notifications
//- (void) getAll
:(CDVInvokedUrlCommand*)command;
//
// Property list for given scheduled notifications
//- (void) getScheduled
:(CDVInvokedUrlCommand*)command;
//
// Property list for given triggered notifications
//- (void) getTriggered
:(CDVInvokedUrlCommand*)command;
//
Clear notifications by id
-
(
void
)
clear
:(
CDVInvokedUrlCommand
*
)
command
;
//
Clear
all notifications
-
(
void
)
clear
All
:(
CDVInvokedUrlCommand
*
)
command
;
//
Cancel notifications by id
-
(
void
)
cancel
:(
CDVInvokedUrlCommand
*
)
command
;
//
Cancel
all notifications
-
(
void
)
cancel
All
:(
CDVInvokedUrlCommand
*
)
command
;
// If a notification with an ID is present
-
(
void
)
isPresent
:(
CDVInvokedUrlCommand
*
)
command
;
// If a notification with an ID is scheduled
-
(
void
)
isScheduled
:(
CDVInvokedUrlCommand
*
)
command
;
// If a notification with an ID is triggered
-
(
void
)
isTriggered
:(
CDVInvokedUrlCommand
*
)
command
;
//
List of all notification ID
s
-
(
void
)
i
ds
:(
CDVInvokedUrlCommand
*
)
command
;
//
List of all scheduled notification ID
s
-
(
void
)
s
cheduledIds
:(
CDVInvokedUrlCommand
*
)
command
;
//
List of all triggered notification ID
s
-
(
void
)
t
riggeredIds
:(
CDVInvokedUrlCommand
*
)
command
;
//
Notification by id
-
(
void
)
notification
:(
CDVInvokedUrlCommand
*
)
command
;
//
Scheduled notification by id
-
(
void
)
scheduledNotification
:(
CDVInvokedUrlCommand
*
)
command
;
//
Triggered notification by id
-
(
void
)
triggeredNotification
:(
CDVInvokedUrlCommand
*
)
command
;
//
List of notifications by id
-
(
void
)
notifications
:(
CDVInvokedUrlCommand
*
)
command
;
//
List of scheduled notifications by id
-
(
void
)
scheduledNotifications
:(
CDVInvokedUrlCommand
*
)
command
;
//
List of triggered notifications by id
-
(
void
)
triggeredNotifications
:(
CDVInvokedUrlCommand
*
)
command
;
@end
src/ios/APPLocalNotification.m
View file @
f6544e8b
This diff is collapsed.
Click to expand it.
www/local-notification-core.js
View file @
f6544e8b
This diff is collapsed.
Click to expand it.
www/local-notification.js
View file @
f6544e8b
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment