which function generate these codes:

<span id="thmr_323" class="thmr_call" style="outline-color: -moz-use-text-color; outline-style: none; outline-width: medium;"

I can't find which function or file generate the '<span'.

Comments

chx’s picture

I typed thmr drupal into Google and I do not even need to click to see

Create a Views event list grouped by month | drupal.org

More specifically, the output will be wrapped in a tag, that includes a thmr attribute that increments.

So the answer is quite clearly Views. Once you are armed with this, your next step is Views Theme information.

Also linked from there, Theme developer is your friend.

--
Drupal development: making the world better, one patch at a time. | A bedroom without a teddy is like a face without a smile.

Anarchtica’s picture

You probably have the Theme Developer module enabled that comes with Devel.

stridebird’s picture

The theme developer module wraps output with this span tag. In D7 it uses a special custom attribute "thmr" so you will see things like <span thmr="thmr_90">...</span>. It wraps the output of each theme call - to function or template - with this type of tag.