/modules/mod_mailinglist/resources/resource_admin_mailing_status.erl
https://code.google.com/p/zotonic/ · Erlang · 48 lines · 22 code · 9 blank · 17 comment · 0 complexity · c36e0e736d08a57f7ff20efb596fb402 MD5 · raw file
- %% @author Arjan Scherpenisse <arjan@scherpenisse.net>
- %% @copyright 2011 Arjan Scherpenisse
- %% @doc Mailing status/control page
- %% Copyright 2011 Arjan Scherpenisse
- %%
- %% Licensed under the Apache License, Version 2.0 (the "License");
- %% you may not use this file except in compliance with the License.
- %% You may obtain a copy of the License at
- %%
- %% http://www.apache.org/licenses/LICENSE-2.0
- %%
- %% Unless required by applicable law or agreed to in writing, software
- %% distributed under the License is distributed on an "AS IS" BASIS,
- %% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- %% See the License for the specific language governing permissions and
- %% limitations under the License.
- -module(resource_admin_mailing_status).
- -author("Arjan Scherpenisse <arjan@scherpenisse.net>").
- -export([
- resource_exists/2,
- is_authorized/2
- ]).
- -include_lib("resource_html.hrl").
- %% @todo Change this into "visible" and add a view instead of edit template.
- is_authorized(ReqData, Context) ->
- {Context2, Id} = resource_admin_edit:ensure_id(?WM_REQ(ReqData, Context)),
- z_acl:wm_is_authorized([{use, mod_mailinglist}, {view, Id}], Context2).
- resource_exists(ReqData, Context) ->
- {Context2, Id} = resource_admin_edit:ensure_id(?WM_REQ(ReqData, Context)),
- case Id of
- undefined -> ?WM_REPLY(false, Context2);
- _N -> ?WM_REPLY(m_rsc:exists(Id, Context2), Context2)
- end.
-
- html(Context) ->
- Vars = [
- {id, z_context:get(id, Context)}
- ],
- Html = z_template:render({cat, "admin_mailing_status.tpl"}, Vars, Context),
- z_context:output(Html, Context).