san / san-album-pagination-with-ajax
ZF2 Module that utilize Sample of Ajax in Album module using ViewJsonStrategy.
dev-master
2014-02-11 16:59 UTC
Requires
- php: >=5.3.3
- rwoverdijk/assetmanager: 1.*
This package is auto-updated.
Last update: 2024-11-05 18:46:53 UTC
README
~ Import Sql dump to your database
--
-- Table structure for table `album`
--
DROP TABLE IF EXISTS `album`;
CREATE TABLE IF NOT EXISTS `album` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`artist` varchar(255) NOT NULL,
`title` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
--
-- Dumping data for table `album`
--
INSERT INTO `album` (`id`, `artist`, `title`) VALUES
(1, 'Bruno Mars', 'Gotex'),
(2, 'Syahrini', 'Membahana'),
(3, 'Justin Timberlake', 'Love');
~ Require it via composer command
composer require san/san-album-pagination-with-ajax
~ Register to your config/application.config.php
return array( 'modules' => array( 'AssetManager', 'Application', 'SanAlbumPaginationWithAjax' ), 'module_listener_options' => array( 'module_paths' => array( './module', './vendor', ), 'config_glob_paths' => array('config/autoload/{,*.}{global,local}.php') ) );
It will automatically install ZF2 AssetManager module, no need to install manually, or move js file into public folder.