Skip to content

Commit 5a21653

Browse files
David Arroyo7Eric James Michael Ritz
David Arroyo7
authored and
Eric James Michael Ritz
committed
php-gd.el, php-ext.el, TODO.org: complete php gd functions
1 parent 05437fd commit 5a21653

File tree

3 files changed

+907
-8
lines changed

3 files changed

+907
-8
lines changed

TODO.org

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
CLOSED: [2015-05-15 vie 11:49]
1818
- State "DONE" from "TODO" [2015-05-15 vie 11:49]
1919
* DONE php-filesystem.el
20-
* TODO php-gd.el
20+
* DONE php-gd.el
21+
CLOSED: [2015-06-19 vie 16:32]
22+
- State "DONE" from "TODO" [2015-06-19 vie 16:32]
2123
file:///usr/share/doc/php-doc/html/ref.image.html
2224
* DONE php-exif.el
2325
CLOSED: [2015-05-24 dom 18:27]

php-ext.el

+14-7
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@
5757

5858
(load (concat php-ext-path "php-var.el"))
5959

60-
6160
;; DOM
6261
;; More see file:///usr/share/doc/php-doc/html/book.dom.html
6362

@@ -86,6 +85,20 @@
8685

8786
(load (concat php-ext-path "php-filesystem.el"))
8887

88+
;; Graphic functions
89+
90+
;; GD functions
91+
;; file:///usr/share/doc/php-doc/html/ref.image.html
92+
;; http://php.net/manual/en/ref.image.php
93+
94+
(load (concat php-ext-path "php-gd.el"))
95+
96+
;; Exif functions
97+
;; http://php.net/manual/en/ref.exif.php
98+
;; file:///usr/share/doc/php-doc/html/ref.exif.html
99+
100+
(load (concat php-ext-path "php-exif.el"))
101+
89102
;; Another functions
90103

91104
(define-skeleton php-function
@@ -108,9 +121,3 @@
108121
'(setq value (skeleton-read "Value? "))
109122
"define(\"" variable "\",\"" value "\");")
110123

111-
(define-skeleton php-chr
112-
"Insert a chr statement"
113-
""
114-
'(setq chr (skeleton-read "Char? "))
115-
"chr(" chr ");"
116-
)

0 commit comments

Comments
 (0)