Jadi tombol Google Scholar Search ini dapat membantu sedikit dalam proses filter plagiat (bener ga tu bahasanya hehehe)
note : saya menggunakan template default ojs, klo pake theme yg lain di sesuaikan lokasi nya
File yg dirubah :
1.peerReview.tpl ( templates/sectionEditor/submission/ ) (tampilan di editor : bisa di lewatkan)
2. editorDecision.tpl (templates/sectionEditor/submission/ ) (tampilan di editor)
3. submission.tpl (templates/reviewer/) (tampilan di reviewer)
ok ... kita mulai
----------------------------------------->>>>
peerReview.tpl ( templates/sectionEditor/submission/ )
New Code:
Code: Select all
	<tr>
		<td></td>
		<td>
			<form method="get" action="https://scholar.google.com/scholar" target="_blank">
				<div style="border:2px dotted black;padding:4px;width:15em;">
					<table border="0" align="center" cellpadding="0">
						<tr>
							<td>
							<input type="hidden"   name="q" value="{$submission->getLocalizedTitle()|strip_unsafe_html}"/>
							<input type="submit" value="Google Scholar Search" />
							</td>
						</tr>
					</table>
				</div>
			</form>
		</td>
	</tr>editorDecision.tpl (templates/sectionEditor/submission/ )
New Code :
Code: Select all
		<td>
			<form method="get" action="https://scholar.google.com/scholar" target="_blank">
				<div style="border:2px dotted black;padding:4px;width:15em;">
					<table border="0" align="center" cellpadding="0">
					<tr>
						<td>
							<input type="hidden"   name="q" value="{$submission->getLocalizedTitle()|strip_unsafe_html}"/>
							<input type="submit" value="Google Scholar Search" />
						</td>
					</tr>
					</table>
				</div>
			</form>
		</td>submission.tpl (templates/reviewer/)
New Code
Code: Select all
	<tr>
		<td></td>
		<td>
			<form method="get" action="https://scholar.google.com/scholar" target="_blank">
				<div style="border:2px dotted black;padding:4px;width:15em;">
					<table border="0" align="center" cellpadding="0">
						<tr>
							<td>
							<input type="hidden"   name="q" value="{$submission->getLocalizedTitle()|strip_unsafe_html}"/>
							<input type="submit" value="Google Scholar Search" />
							</td>
						</tr>
					</table>
				</div>
			</form>
		</td>
	</tr>FINAL RESULT :::>>>