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
451d2727
Commit
451d2727
authored
Aug 10, 2013
by
Sebastián Katzer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Namespace geändernt
parent
1cfe5211
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
11 deletions
+11
-11
plugin.xml
plugin.xml
+4
-4
APPLocalNotification.h
src/ios/APPLocalNotification.h
+3
-3
APPLocalNotification.m
src/ios/APPLocalNotification.m
+4
-4
No files found.
plugin.xml
View file @
451d2727
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<plugin
xmlns=
"http://www.phonegap.com/ns/plugins/1.0"
<plugin
xmlns=
"http://www.phonegap.com/ns/plugins/1.0"
id=
"de.appplant.
maintcall.
cordova.plugin.local-notifications"
id=
"de.appplant.cordova.plugin.local-notifications"
version=
"0.0.1"
>
version=
"0.0.1"
>
<name>
LocalNotifications
</name>
<name>
LocalNotifications
</name>
...
@@ -21,7 +21,7 @@
...
@@ -21,7 +21,7 @@
<config-file
target=
"config.xml"
parent=
"/*"
>
<config-file
target=
"config.xml"
parent=
"/*"
>
<feature
name=
"LocalNotofication"
>
<feature
name=
"LocalNotofication"
>
<param
name=
"ios-package"
value=
"
CDV
LocalNotification"
/>
<param
name=
"ios-package"
value=
"
APP
LocalNotification"
/>
</feature>
</feature>
</config-file>
</config-file>
...
@@ -29,8 +29,8 @@
...
@@ -29,8 +29,8 @@
<clobbers
target=
"plugin.notification.local"
/>
<clobbers
target=
"plugin.notification.local"
/>
</js-module>
</js-module>
<header-file
src=
"src/ios/
CDV
LocalNotification.h"
/>
<header-file
src=
"src/ios/
APP
LocalNotification.h"
/>
<source-file
src=
"src/ios/
CDV
LocalNotification.m"
/>
<source-file
src=
"src/ios/
APP
LocalNotification.m"
/>
</platform>
</platform>
...
...
src/ios/
CDV
LocalNotification.h
→
src/ios/
APP
LocalNotification.h
View file @
451d2727
/**
/**
*
CDV
LocalNotification.h
*
APP
LocalNotification.h
* Cordova LocalNotification Plugin
* Cordova LocalNotification Plugin
*
*
* Created by Sebastian Katzer (github.com/katzer) on 10/08/2013.
* Created by Sebastian Katzer (github.com/katzer) on 10/08/2013.
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
#import <Foundation/Foundation.h>
#import <Foundation/Foundation.h>
#import <Cordova/CDVPlugin.h>
#import <Cordova/CDVPlugin.h>
@interface
CDV
LocalNotification
:
CDVPlugin
{
@interface
APP
LocalNotification
:
CDVPlugin
{
}
}
...
@@ -24,7 +24,7 @@
...
@@ -24,7 +24,7 @@
@end
@end
@interface
CDV
LocalNotification
(
Private
)
@interface
APP
LocalNotification
(
Private
)
-
(
NSMutableDictionary
*
)
repeatDict
;
-
(
NSMutableDictionary
*
)
repeatDict
;
-
(
NSMutableDictionary
*
)
userDict
:(
NSMutableDictionary
*
)
options
;
-
(
NSMutableDictionary
*
)
userDict
:(
NSMutableDictionary
*
)
options
;
...
...
src/ios/
CDV
LocalNotification.m
→
src/ios/
APP
LocalNotification.m
View file @
451d2727
/**
/**
*
CDVLocalNotification.h
*
APPLocalNotification.m
* Cordova LocalNotification Plugin
* Cordova LocalNotification Plugin
*
*
* Created by Sebastian Katzer (github.com/katzer) on 10/08/2013.
* Created by Sebastian Katzer (github.com/katzer) on 10/08/2013.
...
@@ -7,17 +7,17 @@
...
@@ -7,17 +7,17 @@
* GPL v2 licensed
* GPL v2 licensed
*/
*/
#import "
CDV
LocalNotification.h"
#import "
APP
LocalNotification.h"
@implementation
CDV
LocalNotification
@implementation
APP
LocalNotification
/**
/**
* Fügt eine neue Notification-Eintrag hinzu.
* Fügt eine neue Notification-Eintrag hinzu.
*
*
* @param {NSMutableDictionary} options
* @param {NSMutableDictionary} options
*/
*/
-
(
void
)
add
Notification
:(
CDVInvokedUrlCommand
*
)
command
{
-
(
void
)
add
:(
CDVInvokedUrlCommand
*
)
command
{
NSArray
*
arguments
=
[
command
arguments
];
NSArray
*
arguments
=
[
command
arguments
];
NSMutableDictionary
*
options
=
[
arguments
objectAtIndex
:
0
];
NSMutableDictionary
*
options
=
[
arguments
objectAtIndex
:
0
];
UILocalNotification
*
notification
=
[
this
prepareNotification
:
options
];
UILocalNotification
*
notification
=
[
this
prepareNotification
:
options
];
...
...
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