├── README.md ├── com_lendr ├── admin │ ├── access.xml │ ├── config.xml │ ├── controllers │ │ ├── display.php │ │ └── index.html │ ├── helpers │ │ └── lendr.php │ ├── index.html │ ├── install.mysql.sql │ ├── languages │ │ ├── en-GB │ │ │ ├── en-GB.com_lendr.ini │ │ │ ├── en-GB.com_lendr.sys.ini │ │ │ └── index.html │ │ └── index.html │ ├── lendr.php │ ├── models │ │ ├── index.html │ │ └── statistics.php │ └── views │ │ ├── index.html │ │ └── statistics │ │ ├── html.php │ │ └── tmpl │ │ └── default.php ├── index.html ├── lendr.xml └── site │ ├── assets │ ├── css │ │ └── style.css │ ├── index.html │ └── js │ │ └── lendr.js │ ├── controllers │ ├── add.php │ ├── default.php │ ├── delete.php │ ├── edit.php │ ├── index.html │ ├── lend.php │ ├── request.php │ └── wish.php │ ├── helpers │ ├── index.html │ ├── style.php │ └── view.php │ ├── index.html │ ├── languages │ ├── .DS_Store │ ├── en-GB │ │ ├── .DS_Store │ │ ├── en-GB.com_lendr.ini │ │ └── index.html │ └── index.html │ ├── lendr.php │ ├── models │ ├── book.php │ ├── default.php │ ├── index.html │ ├── library.php │ ├── profile.php │ ├── review.php │ ├── waitlist.php │ └── wishlist.php │ ├── router.php │ ├── tables │ ├── book.php │ ├── index.html │ ├── library.php │ ├── review.php │ ├── waitlist.php │ └── wishlist.php │ └── views │ ├── book │ ├── html.php │ ├── index.html │ ├── phtml.php │ ├── raw.php │ └── tmpl │ │ ├── _add.php │ │ ├── _borrow.php │ │ ├── _entry.php │ │ ├── _lend.php │ │ ├── _return.php │ │ ├── book.php │ │ ├── index.html │ │ ├── list.php │ │ └── list.xml │ ├── index.html │ ├── library │ ├── html.php │ ├── index.html │ ├── phtml.php │ └── tmpl │ │ ├── _library.php │ │ └── index.html │ ├── profile │ ├── html.php │ ├── index.html │ ├── phtml.php │ └── tmpl │ │ ├── _entry.php │ │ ├── _message.php │ │ ├── index.html │ │ ├── list.php │ │ ├── list.xml │ │ └── profile.php │ ├── review │ ├── html.php │ ├── index.html │ ├── phtml.php │ └── tmpl │ │ ├── _add.php │ │ ├── _entry.php │ │ ├── index.html │ │ └── list.php │ ├── waitlist │ ├── html.php │ ├── index.html │ ├── phtml.php │ └── tmpl │ │ ├── _waitlist.php │ │ └── index.html │ └── wishlist │ ├── html.php │ ├── index.html │ ├── phtml.php │ └── tmpl │ ├── _wishlist.php │ └── index.html └── plg_finder_books ├── books.php ├── books.xml └── index.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/README.md -------------------------------------------------------------------------------- /com_lendr/admin/access.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/admin/access.xml -------------------------------------------------------------------------------- /com_lendr/admin/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/admin/config.xml -------------------------------------------------------------------------------- /com_lendr/admin/controllers/display.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/admin/controllers/display.php -------------------------------------------------------------------------------- /com_lendr/admin/controllers/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/admin/helpers/lendr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/admin/helpers/lendr.php -------------------------------------------------------------------------------- /com_lendr/admin/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/admin/install.mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/admin/install.mysql.sql -------------------------------------------------------------------------------- /com_lendr/admin/languages/en-GB/en-GB.com_lendr.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/admin/languages/en-GB/en-GB.com_lendr.ini -------------------------------------------------------------------------------- /com_lendr/admin/languages/en-GB/en-GB.com_lendr.sys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/admin/languages/en-GB/en-GB.com_lendr.sys.ini -------------------------------------------------------------------------------- /com_lendr/admin/languages/en-GB/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/admin/languages/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/admin/lendr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/admin/lendr.php -------------------------------------------------------------------------------- /com_lendr/admin/models/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/admin/models/statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/admin/models/statistics.php -------------------------------------------------------------------------------- /com_lendr/admin/views/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/admin/views/statistics/html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/admin/views/statistics/html.php -------------------------------------------------------------------------------- /com_lendr/admin/views/statistics/tmpl/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/admin/views/statistics/tmpl/default.php -------------------------------------------------------------------------------- /com_lendr/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/lendr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/lendr.xml -------------------------------------------------------------------------------- /com_lendr/site/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/assets/css/style.css -------------------------------------------------------------------------------- /com_lendr/site/assets/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/assets/js/lendr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/assets/js/lendr.js -------------------------------------------------------------------------------- /com_lendr/site/controllers/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/controllers/add.php -------------------------------------------------------------------------------- /com_lendr/site/controllers/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/controllers/default.php -------------------------------------------------------------------------------- /com_lendr/site/controllers/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/controllers/delete.php -------------------------------------------------------------------------------- /com_lendr/site/controllers/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/controllers/edit.php -------------------------------------------------------------------------------- /com_lendr/site/controllers/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/controllers/lend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/controllers/lend.php -------------------------------------------------------------------------------- /com_lendr/site/controllers/request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/controllers/request.php -------------------------------------------------------------------------------- /com_lendr/site/controllers/wish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/controllers/wish.php -------------------------------------------------------------------------------- /com_lendr/site/helpers/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/helpers/style.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/helpers/style.php -------------------------------------------------------------------------------- /com_lendr/site/helpers/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/helpers/view.php -------------------------------------------------------------------------------- /com_lendr/site/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/languages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/languages/.DS_Store -------------------------------------------------------------------------------- /com_lendr/site/languages/en-GB/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/languages/en-GB/.DS_Store -------------------------------------------------------------------------------- /com_lendr/site/languages/en-GB/en-GB.com_lendr.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/languages/en-GB/en-GB.com_lendr.ini -------------------------------------------------------------------------------- /com_lendr/site/languages/en-GB/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/languages/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/lendr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/lendr.php -------------------------------------------------------------------------------- /com_lendr/site/models/book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/models/book.php -------------------------------------------------------------------------------- /com_lendr/site/models/default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/models/default.php -------------------------------------------------------------------------------- /com_lendr/site/models/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/models/library.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/models/library.php -------------------------------------------------------------------------------- /com_lendr/site/models/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/models/profile.php -------------------------------------------------------------------------------- /com_lendr/site/models/review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/models/review.php -------------------------------------------------------------------------------- /com_lendr/site/models/waitlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/models/waitlist.php -------------------------------------------------------------------------------- /com_lendr/site/models/wishlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/models/wishlist.php -------------------------------------------------------------------------------- /com_lendr/site/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/router.php -------------------------------------------------------------------------------- /com_lendr/site/tables/book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/tables/book.php -------------------------------------------------------------------------------- /com_lendr/site/tables/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/tables/library.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/tables/library.php -------------------------------------------------------------------------------- /com_lendr/site/tables/review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/tables/review.php -------------------------------------------------------------------------------- /com_lendr/site/tables/waitlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/tables/waitlist.php -------------------------------------------------------------------------------- /com_lendr/site/tables/wishlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/tables/wishlist.php -------------------------------------------------------------------------------- /com_lendr/site/views/book/html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/book/html.php -------------------------------------------------------------------------------- /com_lendr/site/views/book/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/views/book/phtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/book/phtml.php -------------------------------------------------------------------------------- /com_lendr/site/views/book/raw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/book/raw.php -------------------------------------------------------------------------------- /com_lendr/site/views/book/tmpl/_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/book/tmpl/_add.php -------------------------------------------------------------------------------- /com_lendr/site/views/book/tmpl/_borrow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/book/tmpl/_borrow.php -------------------------------------------------------------------------------- /com_lendr/site/views/book/tmpl/_entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/book/tmpl/_entry.php -------------------------------------------------------------------------------- /com_lendr/site/views/book/tmpl/_lend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/book/tmpl/_lend.php -------------------------------------------------------------------------------- /com_lendr/site/views/book/tmpl/_return.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/book/tmpl/_return.php -------------------------------------------------------------------------------- /com_lendr/site/views/book/tmpl/book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/book/tmpl/book.php -------------------------------------------------------------------------------- /com_lendr/site/views/book/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/views/book/tmpl/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/book/tmpl/list.php -------------------------------------------------------------------------------- /com_lendr/site/views/book/tmpl/list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/book/tmpl/list.xml -------------------------------------------------------------------------------- /com_lendr/site/views/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/views/library/html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/library/html.php -------------------------------------------------------------------------------- /com_lendr/site/views/library/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/views/library/phtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/library/phtml.php -------------------------------------------------------------------------------- /com_lendr/site/views/library/tmpl/_library.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/library/tmpl/_library.php -------------------------------------------------------------------------------- /com_lendr/site/views/library/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/views/profile/html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/profile/html.php -------------------------------------------------------------------------------- /com_lendr/site/views/profile/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/views/profile/phtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/profile/phtml.php -------------------------------------------------------------------------------- /com_lendr/site/views/profile/tmpl/_entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/profile/tmpl/_entry.php -------------------------------------------------------------------------------- /com_lendr/site/views/profile/tmpl/_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/profile/tmpl/_message.php -------------------------------------------------------------------------------- /com_lendr/site/views/profile/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/views/profile/tmpl/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/profile/tmpl/list.php -------------------------------------------------------------------------------- /com_lendr/site/views/profile/tmpl/list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/profile/tmpl/list.xml -------------------------------------------------------------------------------- /com_lendr/site/views/profile/tmpl/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/profile/tmpl/profile.php -------------------------------------------------------------------------------- /com_lendr/site/views/review/html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/review/html.php -------------------------------------------------------------------------------- /com_lendr/site/views/review/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/views/review/phtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/review/phtml.php -------------------------------------------------------------------------------- /com_lendr/site/views/review/tmpl/_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/review/tmpl/_add.php -------------------------------------------------------------------------------- /com_lendr/site/views/review/tmpl/_entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/review/tmpl/_entry.php -------------------------------------------------------------------------------- /com_lendr/site/views/review/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/views/review/tmpl/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/review/tmpl/list.php -------------------------------------------------------------------------------- /com_lendr/site/views/waitlist/html.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/views/waitlist/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/views/waitlist/phtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/waitlist/phtml.php -------------------------------------------------------------------------------- /com_lendr/site/views/waitlist/tmpl/_waitlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/waitlist/tmpl/_waitlist.php -------------------------------------------------------------------------------- /com_lendr/site/views/waitlist/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/views/wishlist/html.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/views/wishlist/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /com_lendr/site/views/wishlist/phtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/wishlist/phtml.php -------------------------------------------------------------------------------- /com_lendr/site/views/wishlist/tmpl/_wishlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/com_lendr/site/views/wishlist/tmpl/_wishlist.php -------------------------------------------------------------------------------- /com_lendr/site/views/wishlist/tmpl/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plg_finder_books/books.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/plg_finder_books/books.php -------------------------------------------------------------------------------- /plg_finder_books/books.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbuilt/lendr/HEAD/plg_finder_books/books.xml -------------------------------------------------------------------------------- /plg_finder_books/index.html: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------