Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mojomojo::schema::result::page(3pm) [debian man page]

MojoMojo::Schema::Result::Page(3pm)			User Contributed Perl Documentation		       MojoMojo::Schema::Result::Page(3pm)

NAME
MojoMojo::Schema::Result::Page - store pages METHODS
update_content <%args> Create a new content version for this page. %args is each column of MojoMojo::Schema::Result::Content. add_version my $page_version_new = $page->add_version( creator => $user_id, name_orig => $page_new_name, ); Arguments: %replacementdata Returns: The new PageVersion object. Creates a new page version by cloning the latest version (hence pointing to the same content), and replacing its values with data in the replacement hash. Used for renaming pages. tagged_descendants($tag) Return descendants with the given tag, ordered by name. tagged_descendants_by_date Return descendants with the given tag, ordered by creation time, most recent first. descendants @descendants = $page->descendants( [$resultset_page] ); In list context, returns all descendants of this page (no paging), including the page itself. In scalar context, returns the resultset object. If the optional $resultset_page is passed, returns that page from the resultset. descendants_by_date @descendants = $page->descendants_by_date; Like "descendants", but returns pages sorted by the dates of their last content release dates and pages results (20 per page). user_tags($user) Return popular tags for this page used $user. others_tags($user) Return popular tags for this page used by other people than $user. tags_with_counts($user) Return an array of {id, tag, refcount} for the $user's tags. path( [$path] ) TODO Accessor? has_photos Return the number of photos attached to this page. Use for galleries. AUTHOR
Marcus Ramberg <mramberg@cpan.org> LICENSE
This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2011-01-12 MojoMojo::Schema::Result::Page(3pm)

Check Out this Related Man Page

MojoMojo::Controller::Jsrpc(3pm)			User Contributed Perl Documentation			  MojoMojo::Controller::Jsrpc(3pm)

NAME
MojoMojo::Controller::Jsrpc - Various JSRPC functions. SYNOPSIS
This is the Mojo powering our AJAX features. DESCRIPTION
This controller dispatches various data to ajax methods in mojomojo These methods will be called indirectly through javascript functions. ACTIONS
render ( /.jsrpc/render ) Edit uses this to get live preview. It gets some content in params->{content} and runs it through the formatter chain. child_menu ( /.jsrpc/child_menu?page_id=$page_id ) Returns a list of children for the page given by the page_id parameter, formatted for inclusion in a vertical tree navigation menu. diff ( /.jsrpc/diff ) Loads diff on demand. Takes an absolute revision number as arg, and diffs it against the previous version. submittag ( /.jsrpc/submittag ) Add a tag through form submit tag ( /.jsrpc/tag ) Add a tag to a page. Returns a list of yours and popular tags. untag ( /.jsrpc/untag ) Remove a tag from a page. Returns a list of yours and popular tags. imginfo ( .jsrpc/imginfo ) Inline info on hover for gallery photos. usersearch ( .jsrpc/usersearch ) Backend that handles jQuery autocomplete requests for users. set_permissions ( .jsrpc/set_permissions ) Sets page permissions. clear_permissions ( .jsrpc/clear_permissions ) Clears this page permissions for a given role (making permissions inherited). validate_perm_edit Validates if the user is able to edit permissions and if a role was supplied. AUTHOR
Marcus Ramberg <mramberg@cpan.org>, David Naughton <naughton@cpan.org> LICENSE
This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2011-07-20 MojoMojo::Controller::Jsrpc(3pm)
Man Page