Server IP : 103.11.96.170 / Your IP : 3.149.237.146 Web Server : Microsoft-IIS/10.0 System : Windows NT WIN-F6SLGVICLOP 10.0 build 17763 (Windows Server 2016) AMD64 User : elibrary.unsap.ac.id ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF Directory (0777) : D:/localhost/elibrary/template/lightweight/citation/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php /** * APA Style citation * Copyright (C) 2015 Arie Nugraha (dicarve@gmail.com) * * Available data to use: * $author_list : Array of authors <-- you must pre-proccess this to string first * $authors_string : String of authors name separated by comma if there is more than one * $title : String of title * $publish_year : String of publication year * $edition : String of edition statement * $publish_place : String of place of publication * $publisher_name : String of name of publisher * $gmd_name : String of name of GMD/Document format * */ ?> <p class="citation"> <h3><?php echo __('MLA Style'); ?></h3> <?php if ($authors_string) : ?> <span class="authors"><?php print $authors_string ?>.</span> <span class="title"><em><?php print $title ?></em>.</span> <span class="edition"><?php print $edition ?></span> <?php else : ?> <span class="title"><em><?php print $title ?></em>.</span> <span class="edition"><?php print $edition ?>.</span> <?php endif; ?> <span class="publish_place"><?php print $publish_place ?>:</span> <span class="publisher"><?php print $publisher_name ?>,</span> <span class="year"><?php print $publish_year ?>.</span> <span class="gmd_name"><?php print $gmd_name ?>.</span> </p>