/**
  * Get singletonian instance of this class
  *
  * @return Ai1ec_Author Singletonian instance of this class
  */
 public static function get_instance()
 {
     if (!self::$_instance instanceof self) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }