| [ Index ] |
|
Code source de LifeType 1.2.4 |
1 <?php 2 3 /* 4 * This is the array definition of the different mappings 5 * action parameter->action class used by the controller of the administrative 6 * interface. 7 */ 8 9 // default action that is used if no other 10 $actions["Default"] = "AdminDefaultAction"; 11 // after logging in, this is the action called 12 $actions["Login"] = "AdminLoginAction"; 13 // this action is called after we have verified that the user is valid 14 // and want to make him or her choose a blog to work on (or skip 15 // directly to the admin menu of the blog if he or she belongs to 16 // only one) 17 $actions["blogSelect"] = "AdminMainAction"; 18 $actions["Dashboard"] = "AdminMainAction"; 19 $actions["Manage"] = "AdminManageAction"; 20 // form to add new posts 21 $actions["newPost"] = "AdminNewPostAction"; 22 $actions["previewPost"] = "AdminPreviewPostAction"; 23 // adds a post to the database 24 $actions["addPost"] = "AdminAddPostAction"; 25 // form to add new article categories 26 $actions["newArticleCategory"] = "AdminNewArticleCategoryAction"; 27 // adds the category to the db 28 $actions["addArticleCategory"] = "AdminAddArticleCategoryAction"; 29 // adds the category to the db through Ajax 30 $actions["addArticleCategoryAjax"] = "AdminAddArticleCategoryAjaxAction"; 31 // shows the settings of the blog 32 $actions["blogSettings"] = "AdminBlogSettingsAction"; 33 // updates the settings of the blog 34 $actions["updateBlogSettings"] = "AdminUpdateBlogSettingsAction"; 35 // shows a list of the posts 36 $actions["editPosts"] = "AdminEditPostsAction"; 37 // removes a post from the database 38 $actions["deletePost"] = "AdminDeletePostAction"; 39 $actions["deletePosts"] = "AdminDeletePostAction"; 40 // massive change post status & category 41 $actions["changePostsStatus"] = "AdminChangePostsStatusAction"; 42 $actions["changePostsCategory"] = "AdminChangePostsCategoryAction"; 43 // log out 44 $actions["Logout"] = "AdminLogoutAction"; 45 // shows form to add a new link category 46 $actions["newLinkCategory"] = "AdminNewLinkCategoryAction"; 47 // adds a new link category 48 $actions["addLinkCategory"] = "AdminAddLinkCategoryAction"; 49 // shows the form to add a new link 50 $actions["newLink"] = "AdminNewLinkAction"; 51 // adds the action to the database 52 $actions["addLink"] = "AdminAddLinkAction"; 53 // shows a post for edition 54 $actions["editPost"] = "AdminEditPostAction"; 55 // updates the post in the database 56 $actions["updatePost"] = "AdminUpdatePostAction"; 57 // shows the list with the categories 58 $actions["editArticleCategories"] = "AdminEditArticleCategoriesAction"; 59 // deletes an article category from the database 60 $actions["deleteArticleCategory"] = "AdminDeleteArticleCategoryAction"; 61 $actions["deleteArticleCategories"] = "AdminDeleteArticleCategoryAction"; 62 // edits an article category 63 $actions["editArticleCategory"] = "AdminEditArticleCategoryAction"; 64 // updates the category 65 $actions["updateArticleCategory"] = "AdminUpdateArticleCategoryAction"; 66 // shows the list of links in order to edit them 67 $actions["editLinks"] = "AdminEditLinksAction"; 68 // deletes a link from the database 69 $actions["deleteLink"] = "AdminDeleteLinkAction"; 70 $actions["deleteLinks"] = "AdminDeleteLinkAction"; 71 // massive change links category 72 $actions["changeLinksCategory"] = "AdminChangeLinksCategoryAction"; 73 // shows the list of link categories 74 $actions["editLinkCategories"] = "AdminEditLinkCategoriesAction"; 75 // deletes a link category 76 $actions["deleteLinkCategory"] = "AdminDeleteLinkCategoryAction"; 77 $actions["deleteLinkCategories"] = "AdminDeleteLinkCategoryAction"; 78 // edits a link 79 $actions["editLink"] = "AdminEditLinkAction"; 80 // updates a link 81 $actions["updateLink"] = "AdminUpdateLinkAction"; 82 // edits a link category 83 $actions["editLinkCategory"] = "AdminEditLinkCategoryAction"; 84 // updates a link category 85 $actions["updateLinkCategory"] = "AdminUpdateLinkCategoryAction"; 86 // statistics 87 $actions["Stats"] = "AdminStatisticsAction"; 88 // edit comments 89 $actions["editComments"] = "AdminEditCommentsAction"; 90 // edit trackbacks 91 $actions["editTrackbacks"] = "AdminEditTrackbacksAction"; 92 // deletes a comment 93 $actions["deleteComment"] = "AdminDeleteCommentAction"; 94 $actions["deleteComments"] = "AdminDeleteCommentAction"; 95 // massive change comments status 96 $actions["changeCommentsStatus"] = "AdminChangeCommentsStatusAction"; 97 // show the user settings 98 $actions["userSettings"] = "AdminUserSettingsAction"; 99 // update the user settings 100 $actions["updateUserSettings"] = "AdminUpdateUserSettingsAction"; 101 // show statistics about a post 102 $actions["postStats"] = "AdminPostStatsAction"; 103 // sends trackbacks 104 $actions["sendTrackbacks"] = "AdminSendTrackbacksAction"; 105 // plugin center 106 $actions["pluginCenter"] = "AdminPluginCenterAction"; 107 // pop-up help window 108 $actions["Help"] = "AdminHelpAction"; 109 // super admin interface, main part 110 $actions["adminSettings"] = "AdminSiteSettingsAction"; 111 // list of users in the site 112 $actions["editSiteUsers"] = "AdminSiteUsersAction"; 113 // edits a user 114 $actions["editSiteUser"] = "AdminUserProfileAction"; 115 // delete users 116 $actions["deleteUsers"] = "AdminDeleteUsersAction"; 117 $actions["deleteUser"] = "AdminDeleteUsersAction"; 118 // list of blogs in the site 119 $actions["editSiteBlogs"] = "AdminSiteBlogsAction"; 120 // global settings that can be changed 121 $actions["editSiteSettings"] = "AdminGlobalSettingsAction"; 122 // updates the global settings 123 $actions["updateGlobalSettings"] = "AdminUpdateGlobalSettingsAction"; 124 // edit any user profile 125 $actions["editUserProfile"] = "AdminUserProfileAction"; 126 // updates a user profie 127 $actions["updateUserProfile"] = "AdminUpdateUserProfileAction"; 128 // shows the form to add a user 129 $actions["createUser"] = "AdminCreateUserAction"; 130 // adds a user to the database 131 $actions["addUser"] = "AdminAddUserAction"; 132 // shows the form to add a blog 133 $actions["createBlog"] = "AdminCreateBlogAction"; 134 // adds the blog to the database 135 $actions["addBlog"] = "AdminAddBlogAction"; 136 // edit the users in a blog 137 $actions["editBlogUsers"] = "AdminEditSiteBlogUsersAction"; 138 // edit a blog 139 $actions["editBlog"] = "AdminEditBlogAction"; 140 // saves the settings of the blog we edited 141 $actions["updateEditBlog"] = "AdminUpdateEditBlogAction"; 142 // updates the users of a blog 143 $actions["updateBlogUsers"] = "AdminUpdateSiteBlogUsersAction"; 144 // shows the form to add a user to the blog 145 $actions["newBlogUser"] = "AdminNewBlogUserAction"; 146 // adds a user to the blog 147 $actions["addBlogUser"] = "AdminAddBlogUserAction"; 148 // shows a list of the users that belong to this blog 149 $actions["showBlogUsers"] = "AdminShowBlogUsersAction"; 150 // revokes the permissions of users in a blog 151 $actions["deleteBlogUserPermissions"] = "AdminDeleteBlogUserPermissionsAction"; 152 $actions["deleteBlogUsersPermissions"] = "AdminDeleteBlogUserPermissionsAction"; 153 // lists the locales installed in the site 154 $actions["siteLocales"] = "AdminSiteLocalesAction"; 155 // removes a locale from disk 156 $actions["deleteLocales"] = "AdminDeleteLocalesAction"; 157 $actions["deleteLocale"] = "AdminDeleteLocalesAction"; 158 // shows the form to upload a new locale file 159 $actions["newLocale"] = "AdminNewLocaleAction"; 160 // adds a new locale to the server 161 $actions["uploadLocale"] = "AdminAddLocaleAction"; 162 $actions["scanLocales"] = "AdminAddLocaleAction"; 163 // shows a list of the locales available 164 $actions["siteTemplates"] = "AdminEditTemplatesAction"; 165 // deletes templates 166 $actions["deleteTemplates"] = "AdminDeleteTemplatesAction"; 167 $actions["deleteTemplate"] = "AdminDeleteTemplatesAction"; 168 // shows the form to add a new template 169 $actions["newTemplate"] = "AdminNewTemplateAction"; 170 // adds a new template to the system 171 $actions["addTemplateUpload"] = "AdminAddTemplateAction"; 172 $actions["scanTemplates"] = "AdminAddTemplateAction"; 173 // list of templates available in the blog 174 $actions["blogTemplates"] = "AdminEditBlogTemplatesAction"; 175 // shows the form to add a template 176 $actions["newBlogTemplate"] = "AdminNewBlogTemplateAction"; 177 // adds a new template to the blog 178 $actions["addBlogTemplate"] = "AdminAddBlogTemplateAction"; 179 $actions["scanBlogTemplates"] = "AdminAddBlogTemplateAction"; 180 // removes a template from the blog 181 $actions["deleteBlogTemplate"] = "AdminDeleteBlogTemplateAction"; 182 $actions["deleteBlogTemplates"] = "AdminDeleteBlogTemplateAction"; 183 // deletes blogs 184 $actions["deleteBlogs"] = "AdminDeleteBlogAction"; 185 $actions["deleteBlog"] = "AdminDeleteBlogAction"; 186 // removes all posts marked as spam and marked as deleted 187 $actions["purgePosts"] = "AdminPurgePostsAction"; 188 // shows the form to add a new resource album 189 $actions["newResourceAlbum"] = "AdminNewResourceAlbumAction"; 190 // adds a new album to the database 191 $actions["addResourceAlbum"] = "AdminAddResourceAlbumAction"; 192 // lists the resource albums of a blog 193 $actions["resourceAlbums"] = "AdminResourceAlbumsAction"; 194 // shows the form to add a new resource to the blog 195 $actions["newResource"] = "AdminNewResourceAction"; 196 // adds the new resource to the blog 197 $actions["addResource"] = "AdminAddResourceAction"; 198 // list of resources 199 $actions["resources"] = "AdminResourcesAction"; 200 // information about a resource 201 $actions["resourceInfo"] = "AdminResourceInfoAction"; 202 // updates the information of a resource 203 $actions["updateResource"] = "AdminUpdateResourceAction"; 204 // deletes a resource 205 $actions["deleteResource"] = "AdminDeleteResourceAction"; 206 // shows a window with all the resources 207 $actions["resourceList"] = "AdminResourceListAction"; 208 $actions["resourcesGroup"] = "AdminResourcesGroupAction"; 209 // edits a resource album 210 $actions["editResourceAlbum"] = "AdminEditResourceAlbumAction"; 211 // updates a resource album 212 $actions["updateResourceAlbum"] = "AdminUpdateResourceAlbumAction"; 213 // removes albums 214 $actions["deleteResourceAlbum"] = "AdminDeleteResourceAlbumAction"; 215 $actions["deleteResourceItems"] = "AdminDeleteGalleryItemsAction"; 216 // massive change gallery items album 217 $actions["changeGalleryItemsAlbum"] = "AdminChangeGalleryItemsAlbumAction"; 218 // mark as spam 219 $actions["markComment"] = "AdminMarkCommentAction"; 220 $actions["markTrackback"] = "AdminMarkTrackbackAction"; 221 // purge spam comments 222 $actions["purgeSpamComments"] = "AdminPurgeSpamCommentsAction"; 223 // regenerate a preview 224 $actions["regeneratePreview"] = "AdminRegeneratePreviewAction"; 225 // null action 226 $actions["emptyAction"] = "AdminEmptyAction"; 227 // show the form to add a new custom field 228 $actions["newCustomField"] = "AdminNewCustomFieldAction"; 229 // add the custom field 230 $actions["addCustomField"] = "AdminAddCustomFieldAction"; 231 // list the custom fields 232 $actions["blogCustomFields"] = "AdminBlogCustomFieldsAction"; 233 // delete custom fields from a blog 234 $actions["deleteCustomFields"] = "AdminDeleteCustomFieldsAction"; 235 $actions["deleteCustomField"] = "AdminDeleteCustomFieldsAction"; 236 // edit a custom field 237 $actions["editCustomField"] = "AdminEditCustomFieldAction"; 238 // update a custom field 239 $actions["updateCustomField"] = "AdminUpdateCustomFieldAction"; 240 // in case it is needed, this keeps the connection alive in the background 241 $actions["xmlPing"] = "AdminXmlPingAction"; 242 // the action below is used in cooperation with the XmlHttpRequest object to 243 // automatically save drafts of posts in the background 244 $actions["saveDraftArticleAjax"] = "AdminSaveDraftArticleAjaxAction"; 245 // remove a trackback 246 $actions["deleteTrackback"] = "AdminDeleteTrackbackAction"; 247 $actions["deleteTrackbacks"] = "AdminDeleteTrackbackAction"; 248 // massive change trackbacks status 249 $actions["changeTrackbacksStatus"] = "AdminChangeTrackbacksStatusAction"; 250 // delete referrers 251 $actions["deleteReferrer"] = "AdminDeleteReferrerAction"; 252 $actions["deleteReferrers"] = "AdminDeleteReferrerAction"; 253 $actions["deleteArticleReferrer"] = "AdminDeleteReferrerAction"; 254 $actions["deleteArticleReferrers"] = "AdminDeleteReferrerAction"; 255 // control center 256 $actions["controlCenter"] = "AdminControlCenterAction"; 257 // user picture selector 258 $actions["userPictureSelect"] = "AdminUserPictureSelectAction"; 259 // blog template selector 260 $actions["blogTemplateChooser"] = "AdminBlogTemplateChooserAction"; 261 // clean up 262 $actions["cleanUp"] = "AdminCleanupAction"; 263 $actions["doCleanUp"] = "AdminCleanupAction"; 264 // removes all users marked as deleted 265 $actions["purgeUsers"] = "AdminPurgeUsersAction"; 266 // removes all blogs marked as deleted 267 $actions["purgeBlogs"] = "AdminPurgeBlogsAction"; 268 // register a new blog 269 $actions["registerBlog"] = "AdminRegisterBlogAction"; 270 $actions["finishRegisterBlog"] = "AdminDoRegisterBlogAction"; 271 // global blog categories 272 $actions["newBlogCategory"] = "AdminNewBlogCategoryAction"; 273 $actions["addBlogCategory"] = "AdminAddBlogCategoryAction"; 274 $actions["editBlogCategories"] = "AdminBlogCategoriesAction"; 275 $actions["deleteBlogCategory"] = "AdminDeleteBlogCategoryAction"; 276 $actions["deleteBlogCategories"] = "AdminDeleteBlogCategoryAction"; 277 //nick add this to add global article categories. 278 $actions["newGlobalArticleCategory"] = "AdminNewGlobalArticleCategoryAction"; 279 // adds the category to the db 280 $actions["addGlobalArticleCategory"] = "AdminAddGlobalArticleCategoryAction"; 281 //edit globalarticle categories. 282 $actions["editGlobalArticleCategories"] = "AdminEditGlobalArticleCategoriesAction"; 283 // deletes an article category from the database 284 $actions["deleteGlobalArticleCategory"] = "AdminDeleteGlobalArticleCategoryAction"; 285 $actions["deleteGlobalArticleCategories"] = "AdminDeleteGlobalArticleCategoryAction"; 286 // edits an article category 287 $actions["editGlobalArticleCategory"] = "AdminEditGlobalArticleCategoryAction"; 288 // updates the category 289 $actions["updateGlobalArticleCategory"] = "AdminUpdateGlobalArticleCategoryAction"; 290 // resend the confirmation email 291 $actions["resendConfirmation"] = "AdminResendConfirmationAction"; 292 // allow admins to control any blog 293 $actions["adminBlogSelect"] = "AdminAdminBlogSelectAction"; 294 // generic user chooser 295 $actions["siteUsersChooser"] = "AdminUserChooserAction"; 296 // generic blog chooser 297 $actions["siteBlogsChooser"] = "AdminBlogChooserAction"; 298 // edit and update blog categories 299 $actions["editBlogCategory"] = "AdminEditBlogCategoryAction"; 300 $actions["updateBlogCategory"] = "AdminUpdateBlogCategoryAction"; 301 // permissions 302 $actions["permissionsList"] = "AdminPermissionsListAction"; 303 $actions["deletePermission"] = "AdminDeletePermissionsAction"; 304 $actions["deletePermissions"] = "AdminDeletePermissionsAction"; 305 $actions["editPermission"] = "AdminEditPermissionAction"; 306 $actions["updatePermission"] = "AdminUpdatePermissionAction"; 307 $actions["updatePermission"] = "AdminUpdatePermissionAction"; 308 $actions["newPermission"] = "AdminNewPermissionAction"; 309 $actions["addPermission"] = "AdminAddPermissionAction"; 310 // edit blog user 311 $actions["editBlogUser"] = "AdminEditBlogUserAction"; 312 // update blog user 313 $actions["updateBlogUser"] = "AdminUpdateBlogUserAction"; 314 // permission required 315 $actions["permissionRequired"] = "AdminPermissionRequiredAction"; 316 // global plugin settings 317 $actions["pluginSettings"] = "AdminPluginSettingsAction"; 318 $actions["updatePluginSettings"] = "AdminUpdatePluginSettingsAction"; 319 // bulk update of blogs 320 $actions["changeBlogStatus"] = "AdminChangeBlogStatusAction"; 321 // bulk update of users 322 $actions["changeUserStatus"] = "AdminChangeUserStatusAction"; 323 // perform an md5 check of some core files 324 $actions["Versions"] = "AdminVersionCheckAction"; 325 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
| Généré le : Mon Nov 26 21:04:15 2007 | par Balluche grâce à PHPXref 0.7 |
|