Never been to CodeSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

1 total

Admin in-page edit links for EE

// Add in in-page edit links for superadmins.

{if logged_in_group_id == "1"}

	<div id="admin">
		<ul>
			<li><a href="/eengine/index.php?&C=edit&M=edit_entry&entry_id={entryID}" target="_blank">Edit this page</a></li>
			<li><a href="/eengine/index.php?C=logout" target="_blank">Logout</a></li>
		</ul>
	</div>

{/if}

1 total