NANAS PRABUKU


Berita

Follow Us

Popular Post






Kelurahan/Desa

Berita

Follow Us

Popular Post






Kelurahan/Desa

Berita

Follow Us

Popular Post





Camat


Kelurahan/Desa

Berita

Follow Us

Popular Post






Kelurahan/Desa

  • Kelurahan Gunung Kemala
  • Kelurahan Muntang Tapus
  • Kelurahan Patih Galung
  • Kelurahan Payuputat
  • Kelurahan Prabumulih
  • Desa Tanjung Telang

Berita

Follow Us

Popular Post





Camat


Kelurahan/Desa

Berita

Follow Us

Popular Post




* subrequests. * - Action classes, which are used by the Page classes to perform non-trivial * processing of user requests; * - Model classes, which implement PHP objects representing the system's * various entities, such as Users, Articles, and Journals; * - Data Access Objects (DAOs), which generally provide (amongst others) * update, create, and delete functions for their associated Model classes, * are responsible for all database interaction; * - Support classes, which provide core functionalities, miscellaneous common; * * Additionally, many of the concerns shared by multiple PKP applications are * implemented in the shared "pkp-lib" library, shipped in the lib/pkp * subdirectory. The same conventions listed above apply to lib/pkp as well. * * As the system makes use of inheritance and has consistent class naming * conventions, it is generally easy to tell what category a particular class * falls into. * * For example, a Data Access Object class always inherits from the DAO class, * has a Class name of the form [Something]%DAO, and has a filename of the form * [Something]%DAO.inc.php. * * To learn more about developing OJS, there are several additional resources * that may be useful: * - The docs/README.md document * - The PKP support forum at http://forum.pkp.sfu.ca * - Documentation available at http://pkp.sfu.ca/ojs_documentation * * @file ojs/index.php * * Copyright (c) 2014-2019 Simon Fraser University * Copyright (c) 2003-2019 John Willinsky * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * @ingroup index * * Bootstrap code for OJS site. Loads required files and then calls the * dispatcher to delegate to the appropriate request handler. */ // Initialize global environment define('INDEX_FILE_LOCATION', __FILE__); $application = require('./lib/pkp/includes/bootstrap.inc.php'); // Serve the request $application->execute();