root/trunk/midgard/apis/php5/php_midgard_object.h

Revision 16075, 2.4 kB (checked in by piotras, 8 months ago)

Declare php functions

Line 
1 /*
2  * Copyright (C) 2007 Piotr Pokora <piotrek.pokora@gmail.com>
3  *
4  * This program is free software; you can redistribute it and/or modify it
5  * under the terms of the GNU Lesser General Public License as published
6  * by the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 PHP_FUNCTION(_midgard_php_object_constructor);
20 /* FIXME , change name */
21 PHP_FUNCTION(_get_type_by_id);
22 PHP_FUNCTION(_midgard_php_object_get_by_guid);
23 PHP_FUNCTION(_midgard_php_object_update);
24 PHP_FUNCTION(_midgard_php_object_create);
25 PHP_FUNCTION(_midgard_php_object_find);
26 PHP_FUNCTION(_midgard_php_object_is_in_parent_tree);
27 PHP_FUNCTION(_midgard_php_object_is_in_tree);
28 PHP_FUNCTION(_midgard_php_object_get_tree);
29 PHP_FUNCTION(_midgard_php_object_delete);
30 PHP_FUNCTION(_midgard_php_object_get_parent);
31 PHP_FUNCTION(_midgard_php_object_get);
32 PHP_FUNCTION(_midgard_php_object_list);
33 PHP_FUNCTION(_midgard_php_object_list_children);
34 PHP_FUNCTION(_midgard_php_object_get_by_path);
35 PHP_FUNCTION(_midgard_php_object_parent);
36 PHP_FUNCTION(_php_midgard_object_get_languages);
37 PHP_FUNCTION(_php_midgard_object_purge);
38 PHP_FUNCTION(_php_midgard_object_undelete);
39 PHP_FUNCTION(_php_midgard_object_export);
40 PHP_FUNCTION(_php_midgard_object_parameter);
41
42 /* parameters */
43 PHP_FUNCTION(_php_midgard_object_parameter);
44 PHP_FUNCTION(_php_midgard_object_get_parameter);
45 PHP_FUNCTION(_php_midgard_object_set_parameter);
46 PHP_FUNCTION(_php_midgard_object_list_parameters);
47 PHP_FUNCTION(_php_midgard_object_delete_parameters);
48 PHP_FUNCTION(_php_midgard_object_purge_parameters);
49 PHP_FUNCTION(_php_midgard_object_find_parameters);
50
51 /* attachments */
52 PHP_FUNCTION(_php_midgard_object_create_attachment);
53 PHP_FUNCTION(_php_midgard_object_serve_attachment);
54 PHP_FUNCTION(_php_midgard_object_list_attachments);
55 PHP_FUNCTION(_php_midgard_object_delete_attachments);
56 PHP_FUNCTION(_php_midgard_object_purge_attachments);
57 PHP_FUNCTION(_php_midgard_object_find_attachments);
Note: See TracBrowser for help on using the browser.