├── .gitignore ├── .htaccess ├── app ├── controllers │ └── ItemController.js ├── helper │ └── myHelper.js ├── packages │ └── dirPagination.js ├── routes.js └── services │ └── myServices.js ├── application ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── memcached.php │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── Items.php │ ├── Templates.php │ ├── Welcome.php │ └── index.html ├── core │ └── index.html ├── helpers │ └── index.html ├── hooks │ └── index.html ├── index.html ├── language │ ├── english │ │ └── index.html │ └── index.html ├── libraries │ └── index.html ├── logs │ └── index.html ├── models │ └── index.html ├── third_party │ └── index.html └── views │ ├── errors │ ├── cli │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ ├── html │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_exception.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ └── index.html │ ├── index.html │ ├── templates │ ├── dirPagination.html │ ├── home.html │ └── items.html │ └── welcome_message.php ├── composer.json ├── contributing.md ├── index.php ├── license.txt ├── readme.rst ├── system ├── .htaccess ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Log.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── Security.php │ ├── URI.php │ ├── Utf8.php │ ├── compat │ │ ├── hash.php │ │ ├── index.html │ │ ├── mbstring.php │ │ ├── password.php │ │ └── standard.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_query_builder.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_utility.php │ │ │ └── index.html │ │ ├── ibase │ │ │ ├── ibase_driver.php │ │ │ ├── ibase_forge.php │ │ │ ├── ibase_result.php │ │ │ ├── ibase_utility.php │ │ │ └── index.html │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── pdo │ │ │ ├── index.html │ │ │ ├── pdo_driver.php │ │ │ ├── pdo_forge.php │ │ │ ├── pdo_result.php │ │ │ ├── pdo_utility.php │ │ │ └── subdrivers │ │ │ │ ├── index.html │ │ │ │ ├── pdo_4d_driver.php │ │ │ │ ├── pdo_4d_forge.php │ │ │ │ ├── pdo_cubrid_driver.php │ │ │ │ ├── pdo_cubrid_forge.php │ │ │ │ ├── pdo_dblib_driver.php │ │ │ │ ├── pdo_dblib_forge.php │ │ │ │ ├── pdo_firebird_driver.php │ │ │ │ ├── pdo_firebird_forge.php │ │ │ │ ├── pdo_ibm_driver.php │ │ │ │ ├── pdo_ibm_forge.php │ │ │ │ ├── pdo_informix_driver.php │ │ │ │ ├── pdo_informix_forge.php │ │ │ │ ├── pdo_mysql_driver.php │ │ │ │ ├── pdo_mysql_forge.php │ │ │ │ ├── pdo_oci_driver.php │ │ │ │ ├── pdo_oci_forge.php │ │ │ │ ├── pdo_odbc_driver.php │ │ │ │ ├── pdo_odbc_forge.php │ │ │ │ ├── pdo_pgsql_driver.php │ │ │ │ ├── pdo_pgsql_forge.php │ │ │ │ ├── pdo_sqlite_driver.php │ │ │ │ ├── pdo_sqlite_forge.php │ │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ │ └── pdo_sqlsrv_forge.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ ├── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ │ ├── sqlite3 │ │ │ ├── index.html │ │ │ ├── sqlite3_driver.php │ │ │ ├── sqlite3_forge.php │ │ │ ├── sqlite3_result.php │ │ │ └── sqlite3_utility.php │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── captcha_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── migration_lang.php │ │ ├── number_lang.php │ │ ├── pagination_lang.php │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html └── libraries │ ├── Cache │ ├── Cache.php │ ├── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ ├── Cache_memcached.php │ │ ├── Cache_redis.php │ │ ├── Cache_wincache.php │ │ └── index.html │ └── index.html │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Encryption.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Javascript │ ├── Jquery.php │ └── index.html │ ├── Migration.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Session │ ├── Session.php │ ├── SessionHandlerInterface.php │ ├── Session_driver.php │ ├── drivers │ │ ├── Session_database_driver.php │ │ ├── Session_files_driver.php │ │ ├── Session_memcached_driver.php │ │ ├── Session_redis_driver.php │ │ └── index.html │ └── index.html │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ └── index.html └── user_guide ├── .buildinfo ├── DCO.html ├── _downloads └── ELDocs.tmbundle.zip ├── _images ├── appflowchart.gif └── smile.gif ├── _static ├── ajax-loader.gif ├── basic.css ├── ci-icon.ico ├── comment-bright.png ├── comment-close.png ├── comment.png ├── css │ ├── badge_only.css │ ├── citheme.css │ └── theme.css ├── doctools.js ├── down-pressed.png ├── down.png ├── file.png ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── jquery.js ├── js │ ├── oldtheme.js │ └── theme.js ├── minus.png ├── plus.png ├── pygments.css ├── searchtools.js ├── underscore.js ├── up-pressed.png ├── up.png └── websupport.js ├── changelog.html ├── contributing └── index.html ├── database ├── caching.html ├── call_function.html ├── configuration.html ├── connecting.html ├── db_driver_reference.html ├── examples.html ├── forge.html ├── helpers.html ├── index.html ├── metadata.html ├── queries.html ├── query_builder.html ├── results.html ├── transactions.html └── utilities.html ├── documentation └── index.html ├── general ├── alternative_php.html ├── ancillary_classes.html ├── autoloader.html ├── caching.html ├── cli.html ├── common_functions.html ├── compatibility_functions.html ├── controllers.html ├── core_classes.html ├── creating_drivers.html ├── creating_libraries.html ├── credits.html ├── drivers.html ├── environments.html ├── errors.html ├── helpers.html ├── hooks.html ├── index.html ├── libraries.html ├── managing_apps.html ├── models.html ├── profiling.html ├── requirements.html ├── reserved_names.html ├── routing.html ├── security.html ├── styleguide.html ├── urls.html ├── views.html └── welcome.html ├── genindex.html ├── helpers ├── array_helper.html ├── captcha_helper.html ├── cookie_helper.html ├── date_helper.html ├── directory_helper.html ├── download_helper.html ├── email_helper.html ├── file_helper.html ├── form_helper.html ├── html_helper.html ├── index.html ├── inflector_helper.html ├── language_helper.html ├── number_helper.html ├── path_helper.html ├── security_helper.html ├── smiley_helper.html ├── string_helper.html ├── text_helper.html ├── typography_helper.html ├── url_helper.html └── xml_helper.html ├── index.html ├── installation ├── downloads.html ├── index.html ├── troubleshooting.html ├── upgrade_120.html ├── upgrade_130.html ├── upgrade_131.html ├── upgrade_132.html ├── upgrade_133.html ├── upgrade_140.html ├── upgrade_141.html ├── upgrade_150.html ├── upgrade_152.html ├── upgrade_153.html ├── upgrade_154.html ├── upgrade_160.html ├── upgrade_161.html ├── upgrade_162.html ├── upgrade_163.html ├── upgrade_170.html ├── upgrade_171.html ├── upgrade_172.html ├── upgrade_200.html ├── upgrade_201.html ├── upgrade_202.html ├── upgrade_203.html ├── upgrade_210.html ├── upgrade_211.html ├── upgrade_212.html ├── upgrade_213.html ├── upgrade_214.html ├── upgrade_220.html ├── upgrade_221.html ├── upgrade_222.html ├── upgrade_223.html ├── upgrade_300.html ├── upgrade_301.html ├── upgrade_302.html ├── upgrade_303.html ├── upgrade_304.html ├── upgrade_b11.html └── upgrading.html ├── libraries ├── benchmark.html ├── caching.html ├── calendar.html ├── cart.html ├── config.html ├── email.html ├── encrypt.html ├── encryption.html ├── file_uploading.html ├── form_validation.html ├── ftp.html ├── image_lib.html ├── index.html ├── input.html ├── javascript.html ├── language.html ├── loader.html ├── migration.html ├── output.html ├── pagination.html ├── parser.html ├── security.html ├── sessions.html ├── table.html ├── trackback.html ├── typography.html ├── unit_testing.html ├── uri.html ├── user_agent.html ├── xmlrpc.html └── zip.html ├── license.html ├── objects.inv ├── overview ├── appflow.html ├── at_a_glance.html ├── features.html ├── getting_started.html ├── goals.html ├── index.html └── mvc.html ├── search.html ├── searchindex.js └── tutorial ├── conclusion.html ├── create_news_items.html ├── index.html ├── news_section.html └── static_pages.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/.htaccess -------------------------------------------------------------------------------- /app/controllers/ItemController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/app/controllers/ItemController.js -------------------------------------------------------------------------------- /app/helper/myHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/app/helper/myHelper.js -------------------------------------------------------------------------------- /app/packages/dirPagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/app/packages/dirPagination.js -------------------------------------------------------------------------------- /app/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/app/routes.js -------------------------------------------------------------------------------- /app/services/myServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/app/services/myServices.js -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/cache/.htaccess -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/cache/index.html -------------------------------------------------------------------------------- /application/config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/config/autoload.php -------------------------------------------------------------------------------- /application/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/config/config.php -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/config/constants.php -------------------------------------------------------------------------------- /application/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/config/database.php -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/config/doctypes.php -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/config/foreign_chars.php -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/config/hooks.php -------------------------------------------------------------------------------- /application/config/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/config/index.html -------------------------------------------------------------------------------- /application/config/memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/config/memcached.php -------------------------------------------------------------------------------- /application/config/migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/config/migration.php -------------------------------------------------------------------------------- /application/config/mimes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/config/mimes.php -------------------------------------------------------------------------------- /application/config/profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/config/profiler.php -------------------------------------------------------------------------------- /application/config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/config/routes.php -------------------------------------------------------------------------------- /application/config/smileys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/config/smileys.php -------------------------------------------------------------------------------- /application/config/user_agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/config/user_agents.php -------------------------------------------------------------------------------- /application/controllers/Items.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/controllers/Items.php -------------------------------------------------------------------------------- /application/controllers/Templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/controllers/Templates.php -------------------------------------------------------------------------------- /application/controllers/Welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/controllers/Welcome.php -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/controllers/index.html -------------------------------------------------------------------------------- /application/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/core/index.html -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/helpers/index.html -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/hooks/index.html -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/index.html -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/language/english/index.html -------------------------------------------------------------------------------- /application/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/language/index.html -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/libraries/index.html -------------------------------------------------------------------------------- /application/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/logs/index.html -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/models/index.html -------------------------------------------------------------------------------- /application/third_party/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/third_party/index.html -------------------------------------------------------------------------------- /application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/views/errors/cli/error_404.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/views/errors/cli/error_db.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/views/errors/cli/error_exception.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/views/errors/cli/error_general.php -------------------------------------------------------------------------------- /application/views/errors/cli/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/views/errors/cli/error_php.php -------------------------------------------------------------------------------- /application/views/errors/cli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/views/errors/cli/index.html -------------------------------------------------------------------------------- /application/views/errors/html/error_404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/views/errors/html/error_404.php -------------------------------------------------------------------------------- /application/views/errors/html/error_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/views/errors/html/error_db.php -------------------------------------------------------------------------------- /application/views/errors/html/error_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/views/errors/html/error_exception.php -------------------------------------------------------------------------------- /application/views/errors/html/error_general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/views/errors/html/error_general.php -------------------------------------------------------------------------------- /application/views/errors/html/error_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/views/errors/html/error_php.php -------------------------------------------------------------------------------- /application/views/errors/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/views/errors/html/index.html -------------------------------------------------------------------------------- /application/views/errors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/views/errors/index.html -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/views/index.html -------------------------------------------------------------------------------- /application/views/templates/dirPagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/views/templates/dirPagination.html -------------------------------------------------------------------------------- /application/views/templates/home.html: -------------------------------------------------------------------------------- 1 |

  Welcome to Dashboard

-------------------------------------------------------------------------------- /application/views/templates/items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/views/templates/items.html -------------------------------------------------------------------------------- /application/views/welcome_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/application/views/welcome_message.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/composer.json -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/contributing.md -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/index.php -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/license.txt -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/readme.rst -------------------------------------------------------------------------------- /system/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/.htaccess -------------------------------------------------------------------------------- /system/core/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/Benchmark.php -------------------------------------------------------------------------------- /system/core/CodeIgniter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/CodeIgniter.php -------------------------------------------------------------------------------- /system/core/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/Common.php -------------------------------------------------------------------------------- /system/core/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/Config.php -------------------------------------------------------------------------------- /system/core/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/Controller.php -------------------------------------------------------------------------------- /system/core/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/Exceptions.php -------------------------------------------------------------------------------- /system/core/Hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/Hooks.php -------------------------------------------------------------------------------- /system/core/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/Input.php -------------------------------------------------------------------------------- /system/core/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/Lang.php -------------------------------------------------------------------------------- /system/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/Loader.php -------------------------------------------------------------------------------- /system/core/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/Log.php -------------------------------------------------------------------------------- /system/core/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/Model.php -------------------------------------------------------------------------------- /system/core/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/Output.php -------------------------------------------------------------------------------- /system/core/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/Router.php -------------------------------------------------------------------------------- /system/core/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/Security.php -------------------------------------------------------------------------------- /system/core/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/URI.php -------------------------------------------------------------------------------- /system/core/Utf8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/Utf8.php -------------------------------------------------------------------------------- /system/core/compat/hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/compat/hash.php -------------------------------------------------------------------------------- /system/core/compat/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/compat/index.html -------------------------------------------------------------------------------- /system/core/compat/mbstring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/compat/mbstring.php -------------------------------------------------------------------------------- /system/core/compat/password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/compat/password.php -------------------------------------------------------------------------------- /system/core/compat/standard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/compat/standard.php -------------------------------------------------------------------------------- /system/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/core/index.html -------------------------------------------------------------------------------- /system/database/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/DB.php -------------------------------------------------------------------------------- /system/database/DB_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/DB_cache.php -------------------------------------------------------------------------------- /system/database/DB_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/DB_driver.php -------------------------------------------------------------------------------- /system/database/DB_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/DB_forge.php -------------------------------------------------------------------------------- /system/database/DB_query_builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/DB_query_builder.php -------------------------------------------------------------------------------- /system/database/DB_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/DB_result.php -------------------------------------------------------------------------------- /system/database/DB_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/DB_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/cubrid/cubrid_driver.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/cubrid/cubrid_forge.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/cubrid/cubrid_result.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/cubrid_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/cubrid/cubrid_utility.php -------------------------------------------------------------------------------- /system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/cubrid/index.html -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/ibase/ibase_driver.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/ibase/ibase_forge.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/ibase/ibase_result.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/ibase_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/ibase/ibase_utility.php -------------------------------------------------------------------------------- /system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/ibase/index.html -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/mssql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/mssql/mssql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/mssql/mssql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/mssql/mssql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mssql/mssql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/mssql/mssql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/mysql/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/mysql/mysql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/mysql/mysql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/mysql/mysql_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysql/mysql_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/mysql/mysql_utility.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/mysqli/index.html -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/mysqli/mysqli_driver.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/mysqli/mysqli_forge.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/mysqli/mysqli_result.php -------------------------------------------------------------------------------- /system/database/drivers/mysqli/mysqli_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/mysqli/mysqli_utility.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/oci8/index.html -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/oci8/oci8_driver.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/oci8/oci8_forge.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/oci8/oci8_result.php -------------------------------------------------------------------------------- /system/database/drivers/oci8/oci8_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/oci8/oci8_utility.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/odbc/index.html -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/odbc/odbc_driver.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/odbc/odbc_forge.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/odbc/odbc_result.php -------------------------------------------------------------------------------- /system/database/drivers/odbc/odbc_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/odbc/odbc_utility.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/index.html -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/pdo_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/pdo_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/pdo_result.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/pdo_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/pdo_utility.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/index.html -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_4d_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_4d_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_4d_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_4d_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_cubrid_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_cubrid_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_cubrid_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_dblib_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_dblib_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_dblib_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_dblib_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_firebird_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_firebird_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_firebird_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_firebird_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_ibm_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_ibm_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_ibm_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_ibm_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_informix_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_informix_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_informix_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_informix_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_mysql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_mysql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_mysql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_mysql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_oci_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_oci_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_oci_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_oci_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_odbc_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_odbc_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_odbc_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_pgsql_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_pgsql_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_pgsql_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_pgsql_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_sqlite_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_sqlite_forge.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_sqlsrv_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_driver.php -------------------------------------------------------------------------------- /system/database/drivers/pdo/subdrivers/pdo_sqlsrv_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/pdo/subdrivers/pdo_sqlsrv_forge.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/postgre/index.html -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/postgre/postgre_driver.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/postgre/postgre_forge.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/postgre/postgre_result.php -------------------------------------------------------------------------------- /system/database/drivers/postgre/postgre_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/postgre/postgre_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/sqlite/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/sqlite/sqlite_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/sqlite/sqlite_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/sqlite/sqlite_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite/sqlite_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/sqlite/sqlite_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/sqlite3/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/sqlite3/sqlite3_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/sqlite3/sqlite3_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/sqlite3/sqlite3_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlite3/sqlite3_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/sqlite3/sqlite3_utility.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/sqlsrv/index.html -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/sqlsrv/sqlsrv_driver.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/sqlsrv/sqlsrv_forge.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/sqlsrv/sqlsrv_result.php -------------------------------------------------------------------------------- /system/database/drivers/sqlsrv/sqlsrv_utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/drivers/sqlsrv/sqlsrv_utility.php -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/database/index.html -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/fonts/index.html -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/array_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/array_helper.php -------------------------------------------------------------------------------- /system/helpers/captcha_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/captcha_helper.php -------------------------------------------------------------------------------- /system/helpers/cookie_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/cookie_helper.php -------------------------------------------------------------------------------- /system/helpers/date_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/date_helper.php -------------------------------------------------------------------------------- /system/helpers/directory_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/directory_helper.php -------------------------------------------------------------------------------- /system/helpers/download_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/download_helper.php -------------------------------------------------------------------------------- /system/helpers/email_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/email_helper.php -------------------------------------------------------------------------------- /system/helpers/file_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/file_helper.php -------------------------------------------------------------------------------- /system/helpers/form_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/form_helper.php -------------------------------------------------------------------------------- /system/helpers/html_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/html_helper.php -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/index.html -------------------------------------------------------------------------------- /system/helpers/inflector_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/inflector_helper.php -------------------------------------------------------------------------------- /system/helpers/language_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/language_helper.php -------------------------------------------------------------------------------- /system/helpers/number_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/number_helper.php -------------------------------------------------------------------------------- /system/helpers/path_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/path_helper.php -------------------------------------------------------------------------------- /system/helpers/security_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/security_helper.php -------------------------------------------------------------------------------- /system/helpers/smiley_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/smiley_helper.php -------------------------------------------------------------------------------- /system/helpers/string_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/string_helper.php -------------------------------------------------------------------------------- /system/helpers/text_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/text_helper.php -------------------------------------------------------------------------------- /system/helpers/typography_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/typography_helper.php -------------------------------------------------------------------------------- /system/helpers/url_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/url_helper.php -------------------------------------------------------------------------------- /system/helpers/xml_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/helpers/xml_helper.php -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/index.html -------------------------------------------------------------------------------- /system/language/english/calendar_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/language/english/calendar_lang.php -------------------------------------------------------------------------------- /system/language/english/date_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/language/english/date_lang.php -------------------------------------------------------------------------------- /system/language/english/db_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/language/english/db_lang.php -------------------------------------------------------------------------------- /system/language/english/email_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/language/english/email_lang.php -------------------------------------------------------------------------------- /system/language/english/form_validation_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/language/english/form_validation_lang.php -------------------------------------------------------------------------------- /system/language/english/ftp_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/language/english/ftp_lang.php -------------------------------------------------------------------------------- /system/language/english/imglib_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/language/english/imglib_lang.php -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/language/english/index.html -------------------------------------------------------------------------------- /system/language/english/migration_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/language/english/migration_lang.php -------------------------------------------------------------------------------- /system/language/english/number_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/language/english/number_lang.php -------------------------------------------------------------------------------- /system/language/english/pagination_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/language/english/pagination_lang.php -------------------------------------------------------------------------------- /system/language/english/profiler_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/language/english/profiler_lang.php -------------------------------------------------------------------------------- /system/language/english/unit_test_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/language/english/unit_test_lang.php -------------------------------------------------------------------------------- /system/language/english/upload_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/language/english/upload_lang.php -------------------------------------------------------------------------------- /system/language/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/language/index.html -------------------------------------------------------------------------------- /system/libraries/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Cache/Cache.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_apc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Cache/drivers/Cache_apc.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Cache/drivers/Cache_dummy.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Cache/drivers/Cache_file.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Cache/drivers/Cache_memcached.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Cache/drivers/Cache_redis.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/Cache_wincache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Cache/drivers/Cache_wincache.php -------------------------------------------------------------------------------- /system/libraries/Cache/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Cache/drivers/index.html -------------------------------------------------------------------------------- /system/libraries/Cache/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Cache/index.html -------------------------------------------------------------------------------- /system/libraries/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Calendar.php -------------------------------------------------------------------------------- /system/libraries/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Cart.php -------------------------------------------------------------------------------- /system/libraries/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Driver.php -------------------------------------------------------------------------------- /system/libraries/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Email.php -------------------------------------------------------------------------------- /system/libraries/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Encrypt.php -------------------------------------------------------------------------------- /system/libraries/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Encryption.php -------------------------------------------------------------------------------- /system/libraries/Form_validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Form_validation.php -------------------------------------------------------------------------------- /system/libraries/Ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Ftp.php -------------------------------------------------------------------------------- /system/libraries/Image_lib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Image_lib.php -------------------------------------------------------------------------------- /system/libraries/Javascript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Javascript.php -------------------------------------------------------------------------------- /system/libraries/Javascript/Jquery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Javascript/Jquery.php -------------------------------------------------------------------------------- /system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Javascript/index.html -------------------------------------------------------------------------------- /system/libraries/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Migration.php -------------------------------------------------------------------------------- /system/libraries/Pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Pagination.php -------------------------------------------------------------------------------- /system/libraries/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Parser.php -------------------------------------------------------------------------------- /system/libraries/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Profiler.php -------------------------------------------------------------------------------- /system/libraries/Session/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Session/Session.php -------------------------------------------------------------------------------- /system/libraries/Session/SessionHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Session/SessionHandlerInterface.php -------------------------------------------------------------------------------- /system/libraries/Session/Session_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Session/Session_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/Session_database_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Session/drivers/Session_database_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/Session_files_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Session/drivers/Session_files_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/Session_memcached_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Session/drivers/Session_memcached_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/Session_redis_driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Session/drivers/Session_redis_driver.php -------------------------------------------------------------------------------- /system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Session/drivers/index.html -------------------------------------------------------------------------------- /system/libraries/Session/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Session/index.html -------------------------------------------------------------------------------- /system/libraries/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Table.php -------------------------------------------------------------------------------- /system/libraries/Trackback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Trackback.php -------------------------------------------------------------------------------- /system/libraries/Typography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Typography.php -------------------------------------------------------------------------------- /system/libraries/Unit_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Unit_test.php -------------------------------------------------------------------------------- /system/libraries/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Upload.php -------------------------------------------------------------------------------- /system/libraries/User_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/User_agent.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Xmlrpc.php -------------------------------------------------------------------------------- /system/libraries/Xmlrpcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Xmlrpcs.php -------------------------------------------------------------------------------- /system/libraries/Zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/Zip.php -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/system/libraries/index.html -------------------------------------------------------------------------------- /user_guide/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/.buildinfo -------------------------------------------------------------------------------- /user_guide/DCO.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/DCO.html -------------------------------------------------------------------------------- /user_guide/_downloads/ELDocs.tmbundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_downloads/ELDocs.tmbundle.zip -------------------------------------------------------------------------------- /user_guide/_images/appflowchart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_images/appflowchart.gif -------------------------------------------------------------------------------- /user_guide/_images/smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_images/smile.gif -------------------------------------------------------------------------------- /user_guide/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/ajax-loader.gif -------------------------------------------------------------------------------- /user_guide/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/basic.css -------------------------------------------------------------------------------- /user_guide/_static/ci-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/ci-icon.ico -------------------------------------------------------------------------------- /user_guide/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/comment-bright.png -------------------------------------------------------------------------------- /user_guide/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/comment-close.png -------------------------------------------------------------------------------- /user_guide/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/comment.png -------------------------------------------------------------------------------- /user_guide/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/css/badge_only.css -------------------------------------------------------------------------------- /user_guide/_static/css/citheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/css/citheme.css -------------------------------------------------------------------------------- /user_guide/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/css/theme.css -------------------------------------------------------------------------------- /user_guide/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/doctools.js -------------------------------------------------------------------------------- /user_guide/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/down-pressed.png -------------------------------------------------------------------------------- /user_guide/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/down.png -------------------------------------------------------------------------------- /user_guide/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/file.png -------------------------------------------------------------------------------- /user_guide/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /user_guide/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /user_guide/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/jquery.js -------------------------------------------------------------------------------- /user_guide/_static/js/oldtheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/js/oldtheme.js -------------------------------------------------------------------------------- /user_guide/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/js/theme.js -------------------------------------------------------------------------------- /user_guide/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/minus.png -------------------------------------------------------------------------------- /user_guide/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/plus.png -------------------------------------------------------------------------------- /user_guide/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/pygments.css -------------------------------------------------------------------------------- /user_guide/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/searchtools.js -------------------------------------------------------------------------------- /user_guide/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/underscore.js -------------------------------------------------------------------------------- /user_guide/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/up-pressed.png -------------------------------------------------------------------------------- /user_guide/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/up.png -------------------------------------------------------------------------------- /user_guide/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/_static/websupport.js -------------------------------------------------------------------------------- /user_guide/changelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/changelog.html -------------------------------------------------------------------------------- /user_guide/contributing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/contributing/index.html -------------------------------------------------------------------------------- /user_guide/database/caching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/database/caching.html -------------------------------------------------------------------------------- /user_guide/database/call_function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/database/call_function.html -------------------------------------------------------------------------------- /user_guide/database/configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/database/configuration.html -------------------------------------------------------------------------------- /user_guide/database/connecting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/database/connecting.html -------------------------------------------------------------------------------- /user_guide/database/db_driver_reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/database/db_driver_reference.html -------------------------------------------------------------------------------- /user_guide/database/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/database/examples.html -------------------------------------------------------------------------------- /user_guide/database/forge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/database/forge.html -------------------------------------------------------------------------------- /user_guide/database/helpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/database/helpers.html -------------------------------------------------------------------------------- /user_guide/database/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/database/index.html -------------------------------------------------------------------------------- /user_guide/database/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/database/metadata.html -------------------------------------------------------------------------------- /user_guide/database/queries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/database/queries.html -------------------------------------------------------------------------------- /user_guide/database/query_builder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/database/query_builder.html -------------------------------------------------------------------------------- /user_guide/database/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/database/results.html -------------------------------------------------------------------------------- /user_guide/database/transactions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/database/transactions.html -------------------------------------------------------------------------------- /user_guide/database/utilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/database/utilities.html -------------------------------------------------------------------------------- /user_guide/documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/documentation/index.html -------------------------------------------------------------------------------- /user_guide/general/alternative_php.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/alternative_php.html -------------------------------------------------------------------------------- /user_guide/general/ancillary_classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/ancillary_classes.html -------------------------------------------------------------------------------- /user_guide/general/autoloader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/autoloader.html -------------------------------------------------------------------------------- /user_guide/general/caching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/caching.html -------------------------------------------------------------------------------- /user_guide/general/cli.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/cli.html -------------------------------------------------------------------------------- /user_guide/general/common_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/common_functions.html -------------------------------------------------------------------------------- /user_guide/general/compatibility_functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/compatibility_functions.html -------------------------------------------------------------------------------- /user_guide/general/controllers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/controllers.html -------------------------------------------------------------------------------- /user_guide/general/core_classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/core_classes.html -------------------------------------------------------------------------------- /user_guide/general/creating_drivers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/creating_drivers.html -------------------------------------------------------------------------------- /user_guide/general/creating_libraries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/creating_libraries.html -------------------------------------------------------------------------------- /user_guide/general/credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/credits.html -------------------------------------------------------------------------------- /user_guide/general/drivers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/drivers.html -------------------------------------------------------------------------------- /user_guide/general/environments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/environments.html -------------------------------------------------------------------------------- /user_guide/general/errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/errors.html -------------------------------------------------------------------------------- /user_guide/general/helpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/helpers.html -------------------------------------------------------------------------------- /user_guide/general/hooks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/hooks.html -------------------------------------------------------------------------------- /user_guide/general/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/index.html -------------------------------------------------------------------------------- /user_guide/general/libraries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/libraries.html -------------------------------------------------------------------------------- /user_guide/general/managing_apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/managing_apps.html -------------------------------------------------------------------------------- /user_guide/general/models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/models.html -------------------------------------------------------------------------------- /user_guide/general/profiling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/profiling.html -------------------------------------------------------------------------------- /user_guide/general/requirements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/requirements.html -------------------------------------------------------------------------------- /user_guide/general/reserved_names.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/reserved_names.html -------------------------------------------------------------------------------- /user_guide/general/routing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/routing.html -------------------------------------------------------------------------------- /user_guide/general/security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/security.html -------------------------------------------------------------------------------- /user_guide/general/styleguide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/styleguide.html -------------------------------------------------------------------------------- /user_guide/general/urls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/urls.html -------------------------------------------------------------------------------- /user_guide/general/views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/views.html -------------------------------------------------------------------------------- /user_guide/general/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/general/welcome.html -------------------------------------------------------------------------------- /user_guide/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/genindex.html -------------------------------------------------------------------------------- /user_guide/helpers/array_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/array_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/captcha_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/captcha_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/cookie_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/cookie_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/date_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/date_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/directory_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/directory_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/download_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/download_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/email_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/email_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/file_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/file_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/form_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/form_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/html_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/html_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/index.html -------------------------------------------------------------------------------- /user_guide/helpers/inflector_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/inflector_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/language_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/language_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/number_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/number_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/path_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/path_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/security_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/security_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/smiley_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/smiley_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/string_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/string_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/text_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/text_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/typography_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/typography_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/url_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/url_helper.html -------------------------------------------------------------------------------- /user_guide/helpers/xml_helper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/helpers/xml_helper.html -------------------------------------------------------------------------------- /user_guide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/index.html -------------------------------------------------------------------------------- /user_guide/installation/downloads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/downloads.html -------------------------------------------------------------------------------- /user_guide/installation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/index.html -------------------------------------------------------------------------------- /user_guide/installation/troubleshooting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/troubleshooting.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_120.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_120.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_130.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_130.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_131.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_131.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_132.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_132.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_133.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_133.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_140.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_140.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_141.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_141.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_150.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_150.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_152.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_152.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_153.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_153.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_154.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_154.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_160.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_160.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_161.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_161.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_162.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_162.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_163.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_163.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_170.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_170.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_171.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_171.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_172.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_172.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_200.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_200.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_201.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_201.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_202.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_202.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_203.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_203.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_210.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_210.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_211.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_211.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_212.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_212.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_213.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_213.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_214.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_214.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_220.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_220.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_221.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_221.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_222.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_222.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_223.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_223.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_300.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_300.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_301.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_301.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_302.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_302.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_303.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_303.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_304.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_304.html -------------------------------------------------------------------------------- /user_guide/installation/upgrade_b11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrade_b11.html -------------------------------------------------------------------------------- /user_guide/installation/upgrading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/installation/upgrading.html -------------------------------------------------------------------------------- /user_guide/libraries/benchmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/benchmark.html -------------------------------------------------------------------------------- /user_guide/libraries/caching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/caching.html -------------------------------------------------------------------------------- /user_guide/libraries/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/calendar.html -------------------------------------------------------------------------------- /user_guide/libraries/cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/cart.html -------------------------------------------------------------------------------- /user_guide/libraries/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/config.html -------------------------------------------------------------------------------- /user_guide/libraries/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/email.html -------------------------------------------------------------------------------- /user_guide/libraries/encrypt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/encrypt.html -------------------------------------------------------------------------------- /user_guide/libraries/encryption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/encryption.html -------------------------------------------------------------------------------- /user_guide/libraries/file_uploading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/file_uploading.html -------------------------------------------------------------------------------- /user_guide/libraries/form_validation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/form_validation.html -------------------------------------------------------------------------------- /user_guide/libraries/ftp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/ftp.html -------------------------------------------------------------------------------- /user_guide/libraries/image_lib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/image_lib.html -------------------------------------------------------------------------------- /user_guide/libraries/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/index.html -------------------------------------------------------------------------------- /user_guide/libraries/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/input.html -------------------------------------------------------------------------------- /user_guide/libraries/javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/javascript.html -------------------------------------------------------------------------------- /user_guide/libraries/language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/language.html -------------------------------------------------------------------------------- /user_guide/libraries/loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/loader.html -------------------------------------------------------------------------------- /user_guide/libraries/migration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/migration.html -------------------------------------------------------------------------------- /user_guide/libraries/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/output.html -------------------------------------------------------------------------------- /user_guide/libraries/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/pagination.html -------------------------------------------------------------------------------- /user_guide/libraries/parser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/parser.html -------------------------------------------------------------------------------- /user_guide/libraries/security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/security.html -------------------------------------------------------------------------------- /user_guide/libraries/sessions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/sessions.html -------------------------------------------------------------------------------- /user_guide/libraries/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/table.html -------------------------------------------------------------------------------- /user_guide/libraries/trackback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/trackback.html -------------------------------------------------------------------------------- /user_guide/libraries/typography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/typography.html -------------------------------------------------------------------------------- /user_guide/libraries/unit_testing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/unit_testing.html -------------------------------------------------------------------------------- /user_guide/libraries/uri.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/uri.html -------------------------------------------------------------------------------- /user_guide/libraries/user_agent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/user_agent.html -------------------------------------------------------------------------------- /user_guide/libraries/xmlrpc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/xmlrpc.html -------------------------------------------------------------------------------- /user_guide/libraries/zip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/libraries/zip.html -------------------------------------------------------------------------------- /user_guide/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/license.html -------------------------------------------------------------------------------- /user_guide/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/objects.inv -------------------------------------------------------------------------------- /user_guide/overview/appflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/overview/appflow.html -------------------------------------------------------------------------------- /user_guide/overview/at_a_glance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/overview/at_a_glance.html -------------------------------------------------------------------------------- /user_guide/overview/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/overview/features.html -------------------------------------------------------------------------------- /user_guide/overview/getting_started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/overview/getting_started.html -------------------------------------------------------------------------------- /user_guide/overview/goals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/overview/goals.html -------------------------------------------------------------------------------- /user_guide/overview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/overview/index.html -------------------------------------------------------------------------------- /user_guide/overview/mvc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/overview/mvc.html -------------------------------------------------------------------------------- /user_guide/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/search.html -------------------------------------------------------------------------------- /user_guide/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/searchindex.js -------------------------------------------------------------------------------- /user_guide/tutorial/conclusion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/tutorial/conclusion.html -------------------------------------------------------------------------------- /user_guide/tutorial/create_news_items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/tutorial/create_news_items.html -------------------------------------------------------------------------------- /user_guide/tutorial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/tutorial/index.html -------------------------------------------------------------------------------- /user_guide/tutorial/news_section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/tutorial/news_section.html -------------------------------------------------------------------------------- /user_guide/tutorial/static_pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MuhamedHabib/Codeigniter-and-AngularJS-CRUD-with-Search-and-Pagination-Example./HEAD/user_guide/tutorial/static_pages.html --------------------------------------------------------------------------------