Procedural File: ItemRequests.php

Source Location: /CORE/system/classes/item/ItemRequests.php

Page Details

BIGACE - a PHP and MySQL based Web CMS.

Copyright (C) Kevin Papst.

BIGACE is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

BIGACE is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

For further information visit http://www.bigace.de.

Functions
bigace_count_items  [line 183]

int bigace_count_items( ItemRequest $itemrequest  )

Count the amount of items.

Parameters:
ItemRequest   $itemrequest: 

API Tags:
Return:  the amount of items


[ Top ]
bigace_find_by_id  [line 123]

ItemEnumeration bigace_find_by_id( ItemRequest $itemrequest  )

Fetches all items that have the ID that is EQUAL or LIKE the ID given in the ItemRequest.

Parameters:
ItemRequest   $itemrequest: 

API Tags:
Return:  all found items


[ Top ]
bigace_last_created_items  [line 42]

ItemEnumeration bigace_last_created_items( ItemRequest $itemrequest  )

Fetches the last created items for the given ItemRequest.

If an ID is set in the request, it will be used as parent where the items will be looked-up beneath. If no ID is set, the search is done at the complete site.

Parameters:
ItemRequest   $itemrequest: 

API Tags:
Return:  all found items


[ Top ]
bigace_last_edited_items  [line 77]

ItemEnumeration bigace_last_edited_items( ItemRequest $itemrequest  )

Fetches the last edited items for the given ItemRequest.

If an ID is set in the request, it will be used as parent where the items will be looked-up beneath. If no ID is set, the search is done at the complete site.

Parameters:
ItemRequest   $itemrequest: 

API Tags:
Return:  all found items


[ Top ]
bigace_most_visited  [line 150]

ItemEnumeration bigace_most_visited( ItemRequest $itemrequest  )

Fetches the most visited items.

Parameters:
ItemRequest   $itemrequest: 

API Tags:
Return:  all found items


[ Top ]