2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 12:49:34 +00:00
fhem-mirror/fhem/contrib/98_mark.pm
betateilchen 72ab1f3f69 mark/unmark: move to contrib due to security reasons
git-svn-id: https://svn.fhem.de/fhem/trunk@13246 2b470e98-0d58-463d-a4d8-8e2adae1ed80
2017-01-26 19:24:51 +00:00

49 lines
867 B
Perl

# $Id$
package main;
use strict;
use warnings;
sub mark_Initialize($$) {
$cmds{mark} = { Fn => "CommandMark",
Hlp =>"<TEMPORARY|VOLATILE>,mark devices"};
}
sub CommandMark($$)
{
my ($cl, $param) = @_;
my ($devspec,@marks) = split (" ",$param);
my @devices = devspec2array($devspec,undef);
my $ret = "";
foreach my $m (@marks) {
$m = uc($m);
next if( $m ne "TEMPORARY" && $m ne "VOLATILE" );
foreach my $d (@devices){
$defs{$d}{$m} = 1;
$ret .= "$d marked as $m\n";
}
}
return $ret;
}
1;
=pod
=item command
=item summary mark devices for TEMPORARY or VOLATILE
=item summary_DE markiert Ger&auml;te als TEMPORARY oder VOLATILE
=item command
=begin html
<a name="mark"></a>
<h3>mark</h3>
<ul>
<code>mark &lt;devspec&gt; &lt;TEMPORARY|VOLATILE&gt;</code>
<br><br>
</ul>
=end html
=cut