Procedural File: pnadmin.php
Source Location: /Feeds/pnadmin.php
Page Details:
Zikula Application Framework
Tags:
feeds_admin_create [line 65]
void feeds_admin_create(
'feedname' $args, 'url' 1)
|
|
This is a standard function that is called with the results of the
form supplied by feeds_admin_new() to create a new item
Parameters
| 'url' |
1 |
the url of the item to be created |
| 'feedname' |
$args |
the name of the item to be created |
feeds_admin_delete [line 179]
void feeds_admin_delete(
'fid' $args, 'confirmation' 1)
|
|
delete item
This is a standard function that is called whenever an administrator wishes to delete a current module item. Note that this function is the equivalent of both of the modify() and update() functions above as it both creates a form and processes its output. This is fine for simpler functions, but for more complex operations such as creation and modification it is generally easier to separate them into separate functions. There is no requirement in the Zikula MDG to do one or the other, so either or both can be used as seen appropriate by the module developer
Parameters
| 'confirmation' |
1 |
confirmation that this item can be deleted |
| 'fid' |
$args |
the id of the item to be deleted |
feeds_admin_main [line 16]
the main administration function
feeds_admin_modify [line 94]
void feeds_admin_modify(
'fid' $args)
|
|
modify an item
This is a standard function that is called whenever an administrator wishes to modify a current module item
Parameters
| 'fid' |
$args |
the id of the item to be modified |
feeds_admin_modifyconfig [line 337]
void feeds_admin_modifyconfig(
)
|
|
This is a standard function to modify the configuration parameters of the
module
feeds_admin_new [line 35]
add new item
This is a standard function that is called whenever an administrator wishes to create a new module item
feeds_admin_update [line 142]
void feeds_admin_update(
'fid' $args, 'feedname' 1, 'url' 2)
|
|
This is a standard function that is called with the results of the
form supplied by RSS_admin_modify() to update a current item
Parameters
| 'feedname' |
1 |
the name of the item to be updated |
| 'url' |
2 |
the url of the item to be updated |
| 'fid' |
$args |
the id of the item to be updated |
feeds_admin_updateconfig [line 358]
void feeds_admin_updateconfig(
)
|
|
This is a standard function to update the configuration parameters of the
module given the information passed back by the modification form
feeds_admin_view [line 234]
void feeds_admin_view(
$args)
|
|
view items
Parameters