Search found 5 matches

by MCKiller
15 Feb 2011, 17:28
Forum: General Discussion
Topic: Mantis - Apple iPhone
Replies: 65
Views: 53584

Re: Mantis - Apple iPhone

Maybe it is possible to tweak Tapatalk API?

Tapatalk is a plugin for Bulletin Boards. It is available for Iphone and Android.

I have not checked what you can do with the API. It is just an idea.
by MCKiller
02 Feb 2011, 15:54
Forum: General Discussion
Topic: Mantis - Apple iPhone
Replies: 65
Views: 53584

Re: Mantis - Apple iPhone

The only way I know is to get the IPHONE SDK for MAC OS from APPLE. Then you can develop an APP for IPHONE. But if you want to test it on your phone and publish on the APP Store you have to pay 99$/year. We use Mantis for our own project and we discussed already to develop such an APP, but we didn’t...
by MCKiller
30 Jul 2010, 12:04
Forum: Customizations
Topic: Own Database for plugin
Replies: 1
Views: 2490

Own Database for plugin

Hi Mantis Guru's.... I work on a new plugin for mantis and I want to store some information into the database. Is it possible to create automatically tables within the mantis database if the plugin will be installed and to remove them if the plugin will be uninstalled? Or are there any tables which ...
by MCKiller
28 Jul 2010, 15:43
Forum: Customizations
Topic: add a new MENU option link
Replies: 16
Views: 19844

Re: add a new MENU option link

ok, so I have to do something like that: function hooks( ) { if ( access_has_global_level ( MANAGER ) ) { # print your links $hooks = array( 'EVENT_MENU_MAIN' => 'links', ); } return $hooks; } I will test it when I am at home... thx..
by MCKiller
28 Jul 2010, 13:13
Forum: Customizations
Topic: add a new MENU option link
Replies: 16
Views: 19844

Re: add a new MENU option link

Ok. That is easy.

So I have this in my plugin file:

Code: Select all

	function hooks( ) {
		$hooks = array(
			'EVENT_MENU_MAIN' => 'links',
		);
		return $hooks;
	}
But what do I have to do If the link should only be visible to administrators or reporters?

Thanks for help..
Heiko