Skip to content

Instantly share code, notes, and snippets.

@pixelbart
Created January 26, 2016 13:05
Show Gist options
  • Save pixelbart/c84b89fb090105219577 to your computer and use it in GitHub Desktop.
Save pixelbart/c84b89fb090105219577 to your computer and use it in GitHub Desktop.
Namespace im WordPress Plugin
<?php
namespace Plugin_Name\Klasse;
class Klasse
{
public function init($irgendwas)
{}
}
namespace Plugin_Name\Klasse2;
class Klasse2
{
public function init($irgendwas)
{}
}
// Es gibt keine Konflikte, da die jeweiligen Klassen innerhalb eines Namespace sind.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment